Jackett/src/Jackett.Common/Models/CachedResult.cs

22 lines
342 B
C#
Raw Normal View History

2015-06-28 18:07:25 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2015-07-19 00:27:41 +00:00
namespace Jackett.Models
2015-06-28 18:07:25 +00:00
{
public class CachedResult
{
2015-07-26 14:22:20 +00:00
public ReleaseInfo Result
2015-06-28 18:07:25 +00:00
{
2015-07-26 14:22:20 +00:00
set; get;
2015-06-28 18:07:25 +00:00
}
public DateTime Created
{
2015-07-26 14:22:20 +00:00
set; get;
2015-06-28 18:07:25 +00:00
}
}
}