mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
27 lines
739 B
C#
27 lines
739 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Artemis.Storage.Entities.Surface
|
|
{
|
|
public class DeviceEntity
|
|
{
|
|
public DeviceEntity()
|
|
{
|
|
InputIdentifier = new List<DeviceInputIdentifierEntity>();
|
|
}
|
|
|
|
public string DeviceIdentifier { get; set; }
|
|
public double X { get; set; }
|
|
public double Y { get; set; }
|
|
public double Rotation { get; set; }
|
|
public double Scale { get; set; }
|
|
public int ZIndex { get; set; }
|
|
|
|
public List<DeviceInputIdentifierEntity> InputIdentifier { get; set; }
|
|
}
|
|
|
|
public class DeviceInputIdentifierEntity
|
|
{
|
|
public string InputProvider { get; set; }
|
|
public object Identifier { get; set; }
|
|
}
|
|
} |