namespace Artemis.Storage.Legacy.Entities.Profile; internal class PropertyGroupEntity { public string Identifier { get; set; } = string.Empty; public List Properties { get; set; } = []; public List PropertyGroups { get; set; } = []; }