2019-06-14 03:54:25 +00:00
|
|
|
using System;
|
2018-04-01 18:21:24 +00:00
|
|
|
using System.Collections.Generic;
|
2015-06-27 09:43:17 +00:00
|
|
|
using NzbDrone.Core.Parser.Model;
|
2019-06-14 03:54:25 +00:00
|
|
|
using NzbDrone.Core.ThingiProvider.Status;
|
2015-06-27 09:43:17 +00:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
|
|
{
|
2019-06-14 03:54:25 +00:00
|
|
|
public class IndexerStatus : ProviderStatusBase
|
2015-06-27 09:43:17 +00:00
|
|
|
{
|
|
|
|
public ReleaseInfo LastRssSyncReleaseInfo { get; set; }
|
2019-12-22 21:24:11 +00:00
|
|
|
|
2018-04-01 18:21:24 +00:00
|
|
|
public IDictionary<string, string> Cookies { get; set; }
|
|
|
|
public DateTime? CookiesExpirationDate { get; set; }
|
2015-06-27 09:43:17 +00:00
|
|
|
}
|
|
|
|
}
|