You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readarr/src/NzbDrone.Core/Http/CachedHttpResponse.cs

15 lines
360 B

using System;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Http
{
public class CachedHttpResponse : ModelBase
{
public string Url { get; set; }
public DateTime LastRefresh { get; set; }
public DateTime Expiry { get; set; }
public string Value { get; set; }
public int StatusCode { get; set; }
}
}