using System; using System.Collections.Generic; namespace Artemis.Storage.Entities.Profile { public class ProfileCategoryEntity { public Guid Id { get; set; } public string Name { get; set; } public bool IsCollapsed { get; set; } public bool IsSuspended { get; set; } public int Order { get; set; } public List ProfileConfigurations { get; set; } = new(); } }