mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
25 lines
676 B
C#
25 lines
676 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using LiteDB;
|
|
|
|
namespace Artemis.Storage.Entities.Profile
|
|
{
|
|
public class LayerEntity
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid ParentId { get; set; }
|
|
public Guid LayerTypeGuid { get; set; }
|
|
|
|
public int Order { get; set; }
|
|
public string Name { get; set; }
|
|
|
|
public List<LedEntity> Leds { get; set; }
|
|
public List<ProfileConditionEntity> Condition { get; set; }
|
|
public List<LayerElementEntity> Elements { get; set; }
|
|
|
|
[BsonRef("ProfileEntity")]
|
|
public ProfileEntity Profile { get; set; }
|
|
|
|
public Guid ProfileId { get; set; }
|
|
}
|
|
} |