also narrows types for `Update`, we onlu used the `Key` and `Value` properties, so that's all clients need to pass
9 lines
No EOL
301 B
C#
9 lines
No EOL
301 B
C#
namespace RdtClient.Data.Models.Internal;
|
|
|
|
public class SettingProperty: SettingKeyValuePair
|
|
{
|
|
public String? DisplayName { get; set; }
|
|
public String? Description { get; set; }
|
|
public String Type { get; set; } = default!;
|
|
public Dictionary<Int32, String>? EnumValues { get; set; }
|
|
} |