fixed more tests.

This commit is contained in:
kay.one
2013-03-24 12:56:51 -07:00
parent 7603d8e1ba
commit cd6f0fc55c
4 changed files with 34 additions and 7 deletions

View File

@@ -1,12 +1,13 @@
using System.Linq;
using NzbDrone.Core.Datastore;
using ServiceStack.DataAnnotations;
namespace NzbDrone.Core.Configuration
{
public class Config : ModelBase
{
[Index(Unique = true)]
public string Key { get; set; }
public string Value { get; set; }
}
}