1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-14 06:52:36 +01:00
Radarr/NzbDrone.Web/Models/SearchHistoryModel.cs

13 lines
320 B
C#
Raw Normal View History

2012-04-21 10:16:15 +02:00
using System;
namespace NzbDrone.Web.Models
{
public class SearchHistoryModel
2012-04-21 10:16:15 +02:00
{
public int Id { get; set; }
public string DisplayName { get; set; }
public string SearchTime { get; set; }
public int ReportCount { get; set; }
public bool Successful { get; set; }
}
}