Files
Cleanuparr/code/backend/Cleanuparr.Domain/Entities/Arr/SearchableSeries.cs
2026-03-19 20:47:40 +02:00

30 lines
658 B
C#

namespace Cleanuparr.Domain.Entities.Arr;
public sealed record SearchableSeries
{
public long Id { get; init; }
public string Title { get; init; } = string.Empty;
public int QualityProfileId { get; init; }
public bool Monitored { get; init; }
public List<string> Tags { get; init; } = [];
public DateTime? Added { get; init; }
public string Status { get; init; } = string.Empty;
public SeriesStatistics? Statistics { get; init; }
}
public sealed record SeriesStatistics
{
public int EpisodeFileCount { get; init; }
public int EpisodeCount { get; init; }
public double PercentOfEpisodes { get; init; }
}