-
-
Notifications
You must be signed in to change notification settings - Fork 404
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from tidusjar/develop
Getting Develop up to date
- Loading branch information
Showing
76 changed files
with
698 additions
and
261 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
using System.Collections.Generic; | ||
|
||
namespace Ombi.Core.Models.Requests | ||
{ | ||
public class TvRequestViewModel | ||
{ | ||
public bool RequestAll { get; set; } | ||
public bool LatestSeason { get; set; } | ||
public bool FirstSeason { get; set; } | ||
public int TvDbId { get; set; } | ||
public List<SeasonsViewModel> Seasons { get; set; } = new List<SeasonsViewModel>(); | ||
} | ||
|
||
public class SeasonsViewModel | ||
{ | ||
public int SeasonNumber { get; set; } | ||
public List<EpisodesViewModel> Episodes { get; set; } = new List<EpisodesViewModel>(); | ||
} | ||
|
||
public class EpisodesViewModel | ||
{ | ||
public int EpisodeNumber { get; set; } | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.