mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-23 13:19:33 -05:00
* added Sonarr search type option * updated test data * fixed duplicated Sonarr search items when using search type Season * added enhanced logging option along with Sonarr and Radarr enhanced logs * switched to ghcr.io
12 lines
248 B
C#
12 lines
248 B
C#
namespace Domain.Models.Sonarr;
|
|
|
|
public sealed record Episode
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public int EpisodeNumber { get; set; }
|
|
|
|
public int SeasonNumber { get; set; }
|
|
|
|
public long SeriesId { get; set; }
|
|
} |