mirror of
https://github.com/Artemis-RGB/Artemis
synced 2026-02-04 02:43:32 +00:00
14 lines
367 B
C#
14 lines
367 B
C#
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Markup.Xaml;
|
|
using ReactiveUI.Avalonia;
|
|
|
|
namespace Artemis.UI.Screens.ProfileEditor.ConfigurationPanels.Section;
|
|
|
|
public partial class ConfigurationBooleanItemView : ReactiveUserControl<ConfigurationStringItemViewModel>
|
|
{
|
|
public ConfigurationBooleanItemView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
} |