mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-24 22:35:49 -04:00
24 lines
632 B
C#
24 lines
632 B
C#
using System;
|
|
using NzbDrone.Core.Datastore;
|
|
using NzbDrone.Core.Parser.Model;
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public class IndexerStatus : ModelBase
|
|
{
|
|
public int IndexerId { get; set; }
|
|
|
|
public DateTime? InitialFailure { get; set; }
|
|
public DateTime? MostRecentFailure { get; set; }
|
|
public int EscalationLevel { get; set; }
|
|
public DateTime? DisabledTill { get; set; }
|
|
|
|
public ReleaseInfo LastRssSyncReleaseInfo { get; set; }
|
|
|
|
public bool IsDisabled()
|
|
{
|
|
return DisabledTill.HasValue && DisabledTill.Value > DateTime.UtcNow;
|
|
}
|
|
}
|
|
}
|