11 lines
144 B
C#
11 lines
144 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Selector.Web;
|
|||
|
|
|||
|
public class ChartEntry
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
public int Value { get; set; }
|
|||
|
}
|
|||
|
|