mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
13 lines
No EOL
355 B
C#
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; }
|
|
}
|
|
} |