mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 05:23:31 -07:00
Select type added for client schema
This commit is contained in:
parent
954ac925d0
commit
ca334ef664
10 changed files with 76 additions and 5 deletions
|
@ -1,4 +1,6 @@
|
|||
namespace NzbDrone.Api.ClientSchema
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace NzbDrone.Api.ClientSchema
|
||||
{
|
||||
public class Field
|
||||
{
|
||||
|
@ -8,5 +10,6 @@
|
|||
public string HelpText { get; set; }
|
||||
public object Value { get; set; }
|
||||
public string Type { get; set; }
|
||||
public List<SelectOption> SelectOptions { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue