1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00

make year nullable, and rmember the profileid

This commit is contained in:
Devin Buhl
2017-01-28 17:14:51 -05:00
parent 8274cc016f
commit 8a0820ad1e
3 changed files with 7 additions and 3 deletions
@@ -15,7 +15,7 @@ namespace NzbDrone.Core.NetImport.Trakt
public class Movie
{
public string title { get; set; }
public int year { get; set; }
public int? year { get; set; }
public Ids ids { get; set; }
}