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; } }