Files
annotations/Azaion.Common/DTO/ClusterDistribution.cs
T
2025-05-27 13:26:37 +03:00

11 lines
257 B
C#

using System.Windows.Media;
namespace Azaion.Common.DTO;
public class ClusterDistribution
{
public string Label { get; set; } = "";
public Color Color { get; set; }
public int ClassCount { get; set; }
public double BarWidth { get; set; }
}