mirror of
https://github.com/Artemis-RGB/Artemis
synced 2026-02-04 02:43:32 +00:00
14 lines
362 B
C#
14 lines
362 B
C#
using Artemis.Core;
|
|
using Artemis.UI.Shared;
|
|
|
|
namespace Artemis.UI.Screens.ProfileEditor.DesignPanels.Items;
|
|
|
|
public class ConfigurationNumericItemDesignViewModel : ActivatableViewModelBase
|
|
{
|
|
public ConfigurationNumericItem Item { get; }
|
|
|
|
public ConfigurationNumericItemDesignViewModel(ConfigurationNumericItem item)
|
|
{
|
|
Item = item;
|
|
}
|
|
} |