mirror of
https://github.com/Artemis-RGB/Artemis
synced 2026-01-02 02:33:32 +00:00
10 lines
319 B
C#
10 lines
319 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; } = new();
|
|
public List<PropertyGroupEntity> PropertyGroups { get; set; } = new();
|
|
} |