Selector/Selector.SignalR/Models/IChartEntry.cs
2023-01-22 10:28:52 +00:00

7 lines
122 B
C#

namespace Selector.SignalR;
public interface IChartEntry
{
string Name { get; set; }
int Value { get; set; }
}