Select type added for client schema

This commit is contained in:
Mark McDowall 2013-06-13 00:20:33 -07:00
commit ca334ef664
10 changed files with 76 additions and 5 deletions

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