|
|
|
@ -1,3 +1,4 @@
|
|
|
|
|
using System;
|
|
|
|
|
using NzbDrone.Core.MediaFiles;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Notifications.Webhook
|
|
|
|
@ -16,6 +17,8 @@ namespace NzbDrone.Core.Notifications.Webhook
|
|
|
|
|
QualityVersion = bookFile.Quality.Revision.Version;
|
|
|
|
|
ReleaseGroup = bookFile.ReleaseGroup;
|
|
|
|
|
SceneName = bookFile.SceneName;
|
|
|
|
|
Size = bookFile.Size;
|
|
|
|
|
DateAdded = bookFile.DateAdded;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
@ -24,5 +27,7 @@ namespace NzbDrone.Core.Notifications.Webhook
|
|
|
|
|
public int QualityVersion { get; set; }
|
|
|
|
|
public string ReleaseGroup { get; set; }
|
|
|
|
|
public string SceneName { get; set; }
|
|
|
|
|
public long Size { get; set; }
|
|
|
|
|
public DateTime DateAdded { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|