More work on the Sonarr Api Integration #865

This commit is contained in:
tidusjar 2017-07-01 00:57:23 +01:00
parent 2c945ebb9b
commit c0d019f7d4
10 changed files with 305 additions and 58 deletions

View file

@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace Ombi.Store.Entities.Requests
{
@ -16,6 +17,7 @@ namespace Ombi.Store.Entities.Requests
/// <summary>
/// This is so we can correctly send the right amount of seasons to Sonarr
/// </summary>
[NotMapped]
public int TotalSeasons { get; set; }
public List<ChildRequests> ChildRequests { get; set; }