mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-26 18:13:32 -04:00
19 lines
385 B
C#
19 lines
385 B
C#
namespace Cleanuparr.Domain.Entities.Arr;
|
|
|
|
public sealed record SearchableEpisode
|
|
{
|
|
public long Id { get; init; }
|
|
|
|
public int SeasonNumber { get; init; }
|
|
|
|
public int EpisodeNumber { get; init; }
|
|
|
|
public bool Monitored { get; init; }
|
|
|
|
public DateTime? AirDateUtc { get; init; }
|
|
|
|
public bool HasFile { get; init; }
|
|
|
|
public long EpisodeFileId { get; init; }
|
|
}
|