using System.Windows; using System.Windows.Controls; using Azaion.Common.DTO; namespace Azaion.Dataset.Controls; public partial class ClassDistribution : UserControl { public static readonly DependencyProperty ItemsProperty = DependencyProperty.Register(nameof(Items), typeof(IEnumerable), typeof(ClassDistribution), new PropertyMetadata(null)); public IEnumerable Items { get => (IEnumerable)GetValue(ItemsProperty); set => SetValue(ItemsProperty, value); } public ClassDistribution() { InitializeComponent(); } }