mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-13 18:16:55 -07:00
Some errors fixed and some ui improvements #865
Also reworked sonarr and how episodes work
This commit is contained in:
parent
c56af9afe8
commit
95e3c62e30
23 changed files with 1017 additions and 137 deletions
12
src/Ombi.Store/Entities/SonarrEpisodeCache.cs
Normal file
12
src/Ombi.Store/Entities/SonarrEpisodeCache.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue