mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
15 lines
353 B
C#
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; }
|
|
}
|
|
} |