rdt-client/server/RdtClient.Data/Models/Internal/SettingProperty.cs
Roger Far fc15569e1b Rewrote the setting store, retrieve and displaying on the settings page to make maintenance a lot easier.
Added settings to set defaults for the provider import, sonarr, gui and watch folders.
2022-05-13 14:39:52 -06:00

11 lines
No EOL
339 B
C#

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