mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-27 15:18:50 -05:00
12 lines
246 B
C#
12 lines
246 B
C#
namespace Data.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; }
|
|
} |