mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-26 01:52:41 -04:00
12 lines
261 B
C#
12 lines
261 B
C#
namespace Cleanuparr.Domain.Entities.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; }
|
|
} |