mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-05-11 08:18:16 -04:00
21 lines
474 B
C#
21 lines
474 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<long> Tags { get; init; } = [];
|
|
|
|
public DateTime? Added { get; init; }
|
|
|
|
public string Status { get; init; } = string.Empty;
|
|
|
|
public SeriesStatistics? Statistics { get; init; }
|
|
}
|