mirror of
https://github.com/Artemis-RGB/Artemis
synced 2026-02-04 02:43:32 +00:00
10 lines
313 B
C#
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; } = [];
|
|
} |