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/History/EntityHistory.cs

46 lines
1.2 KiB

using System;
using System.Collections.Generic;
using NzbDrone.Core.Books;
using NzbDrone.Core.Datastore;
using NzbDrone.Core.Qualities;
namespace NzbDrone.Core.History
{
public class EntityHistory : ModelBase
{
public const string DOWNLOAD_CLIENT = "downloadClient";
public const string RELEASE_SOURCE = "releaseSource";
public EntityHistory()
{
Data = new Dictionary<string, string>();
}
public int BookId { get; set; }
public int AuthorId { get; set; }
public string SourceTitle { get; set; }
public QualityModel Quality { get; set; }
public DateTime Date { get; set; }
public Book Book { get; set; }
public Author Author { get; set; }
public EntityHistoryEventType EventType { get; set; }
public Dictionary<string, string> Data { get; set; }
public string DownloadId { get; set; }
}
public enum EntityHistoryEventType
{
Unknown = 0,
Grabbed = 1,
BookFileImported = 3,
DownloadFailed = 4,
BookFileDeleted = 5,
BookFileRenamed = 6,
BookImportIncomplete = 7,
DownloadImported = 8,
BookFileRetagged = 9,
DownloadIgnored = 10
}
}