mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 21:46:30 +00:00
11 lines
257 B
C#
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; }
|
|
} |