mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
Added event type icon to history grid.
This commit is contained in:
parent
9d8fd840c4
commit
76fb548ccd
9 changed files with 87 additions and 8 deletions
|
@ -21,7 +21,18 @@ namespace NzbDrone.Core.History
|
|||
public Episode Episode { get; set; }
|
||||
public Series Series { get; set; }
|
||||
|
||||
public HistoryEventType EventType { get; set; }
|
||||
|
||||
public Dictionary<string, string> Data { get; set; }
|
||||
}
|
||||
|
||||
|
||||
public enum HistoryEventType
|
||||
{
|
||||
Unknown = 0,
|
||||
Grabbed = 1,
|
||||
SeriesFolderImported = 2,
|
||||
DownloadFolderImported = 3
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue