Selector/Selector.Web/Past/ChartEntry.cs
2023-01-22 10:28:52 +00:00

12 lines
182 B
C#

using System;
using Selector.SignalR;
namespace Selector.Web;
public class ChartEntry : IChartEntry
{
public string Name { get; set; }
public int Value { get; set; }
}