mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-21 22:05:38 -04:00
committed by
Mark McDowall
parent
11e5c5a11b
commit
fd3dd1ab7d
@@ -0,0 +1,18 @@
|
||||
using NzbDrone.Core.MediaCover;
|
||||
|
||||
namespace NzbDrone.Core.Notifications.Webhook
|
||||
{
|
||||
public class WebhookImage
|
||||
{
|
||||
public MediaCoverTypes CoverType { get; set; }
|
||||
public string Url { get; set; }
|
||||
public string RemoteUrl { get; set; }
|
||||
|
||||
public WebhookImage(MediaCover.MediaCover image)
|
||||
{
|
||||
CoverType = image.CoverType;
|
||||
RemoteUrl = image.RemoteUrl;
|
||||
Url = image.Url;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user