You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Store/Entities/Requests/TvRequests.cs

24 lines
758 B

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace Ombi.Store.Entities.Requests
{
public class TvRequests : Entity
{
public int TvDbId { get; set; }
public string ImdbId { get; set; }
public int? QualityOverride { get; set; }
public int? RootFolder { get; set; }
public string Overview { get; set; }
public string Title { get; set; }
public string PosterPath { get; set; }
public string Background { get; set; }
public DateTime ReleaseDate { get; set; }
public string Status { get; set; }
public int TotalSeasons { get; set; }
public List<ChildRequests> ChildRequests { get; set; }
}
}