mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
17 lines
462 B
C#
17 lines
462 B
C#
using Artemis.Storage.Legacy.Entities.Profile.Abstract;
|
|
using LiteDB;
|
|
|
|
namespace Artemis.Storage.Legacy.Entities.Profile;
|
|
|
|
internal class FolderEntity : RenderElementEntity
|
|
{
|
|
public int Order { get; set; }
|
|
public string? Name { get; set; }
|
|
public bool IsExpanded { get; set; }
|
|
public bool Suspended { get; set; }
|
|
|
|
[BsonRef("ProfileEntity")]
|
|
public ProfileEntity Profile { get; set; } = null!;
|
|
|
|
public Guid ProfileId { get; set; }
|
|
} |