namespace Artemis.Storage.Migrator.Legacy.Entities.Profile; public class PropertyGroupEntity { public string Identifier { get; set; } = string.Empty; public List Properties { get; set; } = new(); public List PropertyGroups { get; set; } = new(); }