Matching TvRage to TvDb

#ND-15 In Progress
This commit is contained in:
Mark McDowall 2012-12-19 08:41:51 -08:00
commit 253426873c
17 changed files with 753 additions and 7 deletions

View file

@ -17,6 +17,6 @@ namespace NzbDrone.Core.Model.TvRage
public string Status { get; set; }
public int RunTime { get; set; }
public DateTime AirTime { get; set; }
public DayOfWeek AirDay { get; set; }
public DayOfWeek? AirDay { get; set; }
}
}

View file

@ -19,7 +19,7 @@ namespace NzbDrone.Core.Model.TvRage
public int RunTime { get; set; }
public string Network { get; set; }
public DateTime AirTime { get; set; }
public DayOfWeek AirDay { get; set; }
public DayOfWeek? AirDay { get; set; }
public int UtcOffset { get; set; }
}
}