mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
18 lines
426 B
C#
18 lines
426 B
C#
using Artemis.Core;
|
|
using RGB.NET.Core;
|
|
using Stylet;
|
|
|
|
namespace Artemis.UI.Screens.Settings.Device.Tabs
|
|
{
|
|
public class DeviceInfoTabViewModel : Screen
|
|
{
|
|
public DeviceInfoTabViewModel(ArtemisDevice device)
|
|
{
|
|
Device = device;
|
|
DisplayName = "INFO";
|
|
}
|
|
|
|
public bool IsKeyboard => Device.RgbDevice is IKeyboard;
|
|
public ArtemisDevice Device { get; }
|
|
}
|
|
} |