Sonarr/NzbDrone.Web/Models/SearchHistoryModel.cs

13 lines
320 B
C#
Raw Normal View History

2012-04-21 08:16:15 +00:00
using System;
namespace NzbDrone.Web.Models
{
public class SearchHistoryModel
2012-04-21 08:16:15 +00: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; }
}
}