Added event type icon to history grid.

This commit is contained in:
Keivan Beigi 2013-06-10 18:55:05 -07:00
commit 76fb548ccd
9 changed files with 87 additions and 8 deletions

View file

@ -1,5 +1,7 @@
using System;
using System.Collections.Generic;
using NzbDrone.Api.REST;
using NzbDrone.Core.History;
using NzbDrone.Core.Tv;
namespace NzbDrone.Api.History
@ -15,7 +17,11 @@ namespace NzbDrone.Api.History
public string NzbInfoUrl { get; set; }
public string ReleaseGroup { get; set; }
public HistoryEventType EventType { get; set; }
public Dictionary<string, string> Data { get; set; }
public Episode Episode { get; set; }
public Core.Tv.Series Series { get; set; }
public Core.Tv.Series Series { get; set; }
}
}