Selector/Selector.Web/Past/ChartEntry.cs

11 lines
144 B
C#
Raw Normal View History

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