mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
15 lines
327 B
C#
15 lines
327 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Artemis.Storage.Entities.Surface
|
|
{
|
|
public class SurfaceEntity
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
public bool IsActive { get; set; }
|
|
|
|
public List<DeviceEntity> DeviceEntities { get; set; }
|
|
}
|
|
} |