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
13
NzbDrone.Api/ClientSchema/SelectOption.cs
Normal file
13
NzbDrone.Api/ClientSchema/SelectOption.cs
Normal file
|
@ -0,0 +1,13 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace NzbDrone.Api.ClientSchema
|
||||
{
|
||||
public class SelectOption
|
||||
{
|
||||
public int Value { get; set; }
|
||||
public string Name { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue