rdt-client/server/RdtClient.Data/Models/Internal/SettingProperty.cs
2022-05-13 18:51:04 -06:00

11 lines
No EOL
367 B
C#

namespace RdtClient.Data.Models.Internal;
public class SettingProperty
{
public String Key { get; set; } = default!;
public Object? Value { get; set; }
public String? DisplayName { get; set; }
public String? Description { get; set; }
public String Type { get; set; } = default!;
public Dictionary<Int32, String>? EnumValues { get; set; }
}