1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2026-02-04 02:43:32 +00:00
Artemis/src/Artemis.Storage/Entities/Profile/PropertyGroupEntity.cs

10 lines
313 B
C#

using System.Collections.Generic;
namespace Artemis.Storage.Entities.Profile;
public class PropertyGroupEntity
{
public string Identifier { get; set; } = string.Empty;
public List<PropertyEntity> Properties { get; set; } = [];
public List<PropertyGroupEntity> PropertyGroups { get; set; } = [];
}