mirror of
https://github.com/Artemis-RGB/Artemis
synced 2026-02-04 02:43:32 +00:00
8 lines
287 B
C#
8 lines
287 B
C#
namespace Artemis.Storage.Legacy.Entities.Profile;
|
|
|
|
internal class PropertyGroupEntity
|
|
{
|
|
public string Identifier { get; set; } = string.Empty;
|
|
public List<PropertyEntity> Properties { get; set; } = [];
|
|
public List<PropertyGroupEntity> PropertyGroups { get; set; } = [];
|
|
} |