mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
8 lines
300 B
C#
8 lines
300 B
C#
namespace Artemis.Storage.Migrator.Legacy.Entities.Profile;
|
|
|
|
public class PropertyGroupEntity
|
|
{
|
|
public string Identifier { get; set; } = string.Empty;
|
|
public List<PropertyEntity> Properties { get; set; } = new();
|
|
public List<PropertyGroupEntity> PropertyGroups { get; set; } = new();
|
|
} |