using System.Windows; using System.Windows.Controls; namespace Artemis.UI.Shared { /// /// Interaction logic for ProfileConfigurationIcon.xaml /// public partial class ProfileConfigurationIcon : UserControl { /// /// Gets or sets the to display /// public static readonly DependencyProperty ConfigurationIconProperty = DependencyProperty.Register(nameof(ConfigurationIcon), typeof(Core.ProfileConfigurationIcon), typeof(ProfileConfigurationIcon)); /// /// Creates a new instance of the class /// public ProfileConfigurationIcon() { InitializeComponent(); } /// /// Gets or sets the to display /// public Core.ProfileConfigurationIcon ConfigurationIcon { get => (Core.ProfileConfigurationIcon) GetValue(ConfigurationIconProperty); set => SetValue(ConfigurationIconProperty, value); } } }