mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-25 22:59:10 -04:00
New: OnGrab Notifications
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using NzbDrone.Core.Parser.Model;
|
||||
|
||||
namespace NzbDrone.Core.Notifications.Webhook
|
||||
{
|
||||
public class WebhookRelease
|
||||
{
|
||||
public WebhookRelease()
|
||||
{
|
||||
}
|
||||
|
||||
public WebhookRelease(ReleaseInfo release)
|
||||
{
|
||||
ReleaseTitle = release.Title;
|
||||
Indexer = release.Indexer;
|
||||
Size = release.Size;
|
||||
}
|
||||
|
||||
public string ReleaseTitle { get; set; }
|
||||
public string Indexer { get; set; }
|
||||
public long? Size { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user