7 lines
122 B
C#
7 lines
122 B
C#
|
namespace Selector.SignalR;
|
|||
|
|
|||
|
public interface IChartEntry
|
|||
|
{
|
|||
|
string Name { get; set; }
|
|||
|
int Value { get; set; }
|
|||
|
}
|