mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-26 10:03:12 -04:00
30 lines
658 B
C#
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; }
|
|
}
|