1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
2019-11-20 19:19:13 +01:00

15 lines
353 B
C#

using System;
namespace Artemis.Storage.Entities.Surface
{
public class DeviceEntity
{
public Guid Id { get; set; }
public int DeviceHashCode { get; set; }
public double X { get; set; }
public double Y { get; set; }
public double Rotation { get; set; }
public int ZIndex { get; set; }
}
}