mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-14 01:02:57 -07:00
19 lines
No EOL
603 B
C#
19 lines
No EOL
603 B
C#
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; }
|
|
}
|
|
} |