cleaning up episode/series air date/time

This commit is contained in:
kay.one 2013-05-12 18:32:21 -07:00
commit 42849d3276
18 changed files with 61 additions and 168 deletions

View file

@ -1,6 +1,4 @@
using System;
namespace NzbDrone.Core.MetadataSource.Trakt
namespace NzbDrone.Core.MetadataSource.Trakt
{
public class Episode
{
@ -10,9 +8,10 @@ namespace NzbDrone.Core.MetadataSource.Trakt
public int tvdb_id { get; set; }
public string title { get; set; }
public string overview { get; set; }
public DateTime? first_aired { get; set; }
public int first_aired { get; set; }
public string first_aired_iso { get; set; }
public int first_aired_utc { get; set; }
public string url { get; set; }
public string screen { get; set; }
public Ratings ratings { get; set; }
}
}