mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Storage - Added LiteDB to SQLite migration UI - Try to die a bit more gracefully Core - Delay start watching plugins for hot reload after initializing UI - Simplify category management logic UI - Avoid crash during profile icon load Storage - Fix entry metadata retrieval
14 lines
358 B
C#
14 lines
358 B
C#
using System;
|
|
using Artemis.Storage.Entities.Profile.Abstract;
|
|
|
|
namespace Artemis.Storage.Entities.Profile;
|
|
|
|
public class FolderEntity : RenderElementEntity
|
|
{
|
|
public int Order { get; set; }
|
|
public string? Name { get; set; }
|
|
public bool IsExpanded { get; set; }
|
|
public bool Suspended { get; set; }
|
|
|
|
public Guid ProfileId { get; set; }
|
|
} |