mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-30 19:40:05 -07:00
14 lines
No EOL
398 B
C#
14 lines
No EOL
398 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 int MovieDbId { get; set; }
|
|
public bool HasFile { get; set; }
|
|
}
|
|
} |