Fixed nullables.

This commit is contained in:
Taloth Saldono
2015-10-03 21:19:25 +02:00
parent ccfa13e383
commit 0b219e1169
6 changed files with 15 additions and 15 deletions
@@ -24,7 +24,7 @@ namespace NzbDrone.Core.Test.Datastore
public string PropString { get; set; }
public int PropInt { get; set; }
public bool PropBool { get; set; }
public Nullable<int> PropNullable { get; set; }
public int? PropNullable { get; set; }
public EmbeddedType Embedded { get; set; }
public List<EmbeddedType> EmbeddedList { get; set; }
}