rdt-client/server/RdtClient.Data/Models/Internal/SettingProperty.cs
Cucumberrbob f47d4631df
Add openapi compatible xmldoc to SettingsController
also narrows types for `Update`, we onlu used the `Key` and `Value` properties, so that's all clients need to pass
2025-03-07 19:52:10 +00:00

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; }
}