mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
47 lines
1.2 KiB
C#
47 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using NzbDrone.Core.Model;
|
|
using PetaPoco;
|
|
|
|
namespace NzbDrone.Core.Repository.Search
|
|
{
|
|
[PrimaryKey("Id", autoIncrement = true)]
|
|
[TableName("SearchHistory")]
|
|
public class SearchHistory
|
|
{
|
|
public int Id { get; set; }
|
|
public int SeriesId { get; set; }
|
|
public int? SeasonNumber { get; set; }
|
|
public int? EpisodeId { get; set; }
|
|
public DateTime SearchTime { get; set; }
|
|
public bool SuccessfulDownload { get; set; }
|
|
|
|
[ResultColumn]
|
|
public List<SearchHistoryItem> SearchHistoryItems { get; set; }
|
|
|
|
[Ignore]
|
|
public List<int> Successes { get; set; }
|
|
|
|
[ResultColumn]
|
|
public string SeriesTitle { get; set; }
|
|
|
|
[ResultColumn]
|
|
public bool IsDaily { get; set; }
|
|
|
|
[ResultColumn]
|
|
public int? EpisodeNumber { get; set; }
|
|
|
|
[ResultColumn]
|
|
public string EpisodeTitle { get; set; }
|
|
|
|
[ResultColumn]
|
|
public DateTime AirDate { get; set; }
|
|
|
|
[ResultColumn]
|
|
public int TotalItems { get; set; }
|
|
|
|
[ResultColumn]
|
|
public int SuccessfulCount { get; set; }
|
|
}
|
|
} |