mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
18 lines
404 B
C#
18 lines
404 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Artemis.Storage.Entities
|
|
{
|
|
internal class Layer
|
|
{
|
|
public int ProfileId { get; set; }
|
|
public string Name { get; set; }
|
|
public LayerType LayerType { get; set; }
|
|
|
|
public virtual Profile Profile { get; set; }
|
|
public virtual ICollection<Layer> Layers { get; set; }
|
|
}
|
|
|
|
internal enum LayerType
|
|
{
|
|
}
|
|
} |