Ombi/src/Ombi.Store/Entities/SonarrEpisodeCache.cs

13 lines
No EOL
355 B
C#

using System.ComponentModel.DataAnnotations.Schema;
namespace Ombi.Store.Entities
{
[Table("SonarrEpisodeCache")]
public class SonarrEpisodeCache : Entity
{
public int SeasonNumber { get; set; }
public int EpisodeNumber { get; set; }
public int TvDbId { get; set; }
public bool HasFile { get; set; }
}
}