Selector/Selector.Web/Past/ChartEntry.cs

12 lines
182 B
C#
Raw Normal View History

2022-10-10 11:44:47 +01:00
using System;
2023-01-22 10:28:52 +00:00
using Selector.SignalR;
2022-10-10 11:44:47 +01:00
namespace Selector.Web;
2023-01-22 10:28:52 +00:00
public class ChartEntry : IChartEntry
2022-10-10 11:44:47 +01:00
{
public string Name { get; set; }
public int Value { get; set; }
}