mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-14 17:22:54 -07:00
Made a start on adding tv shows for the recently added !wip
This commit is contained in:
parent
0e94270f84
commit
df95962aa6
11 changed files with 220 additions and 66 deletions
19
src/Ombi.Core/Models/RecentlyAddedTvModel.cs
Normal file
19
src/Ombi.Core/Models/RecentlyAddedTvModel.cs
Normal file
|
@ -0,0 +1,19 @@
|
|||
using System;
|
||||
|
||||
namespace Ombi.Core.Models
|
||||
{
|
||||
public class RecentlyAddedTvModel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Title { get; set; } // Series Title
|
||||
public string Overview { get; set; }
|
||||
public string ImdbId { get; set; }
|
||||
public string TvDbId { get; set; }
|
||||
public string TheMovieDbId { get; set; }
|
||||
public string ReleaseYear { get; set; }
|
||||
public DateTime AddedAt { get; set; }
|
||||
public string Quality { get; set; }
|
||||
public int SeasonNumber { get; set; }
|
||||
public int EpisodeNumber { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue