Started on sonarr #865

This commit is contained in:
tidusjar 2017-06-30 22:02:22 +01:00
parent 3ee65f4f0c
commit 2c945ebb9b
10 changed files with 358 additions and 44 deletions

View file

@ -13,6 +13,10 @@ namespace Ombi.Store.Entities.Requests
public string PosterPath { get; set; }
public DateTime ReleaseDate { get; set; }
public string Status { get; set; }
/// <summary>
/// This is so we can correctly send the right amount of seasons to Sonarr
/// </summary>
public int TotalSeasons { get; set; }
public List<ChildRequests> ChildRequests { get; set; }
}