Selector/Selector.SignalR/Models/IChartEntry.cs

7 lines
122 B
C#
Raw Normal View History

2023-01-22 10:28:52 +00:00
namespace Selector.SignalR;
public interface IChartEntry
{
string Name { get; set; }
int Value { get; set; }
}