1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
Robert f32edcf502 Implemented layer LED assignment
Added a centralised ProfileEditorSurface for communication between VMs
Prefixed Surface, Device and Led with Artemis to differentiate them better
2019-11-29 17:37:22 +01:00

8 lines
176 B
C#

namespace Artemis.Storage.Entities.Profile
{
public class LedEntity
{
public string LedName { get; set; }
public int DeviceHash { get; set; }
}
}