parent
d93329a3fd
commit
22781b62e6
@ -0,0 +1,20 @@
|
|||||||
|
using NzbDrone.Core.Books;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.Notifications.Webhook
|
||||||
|
{
|
||||||
|
public class WebhookBookEdition
|
||||||
|
{
|
||||||
|
public WebhookBookEdition(Edition edition)
|
||||||
|
{
|
||||||
|
GoodreadsId = edition.ForeignEditionId;
|
||||||
|
Title = edition.Title;
|
||||||
|
Asin = edition.Asin;
|
||||||
|
Isbn13 = edition.Isbn13;
|
||||||
|
}
|
||||||
|
|
||||||
|
public string Title { get; set; }
|
||||||
|
public string GoodreadsId { get; set; }
|
||||||
|
public string Asin { get; set; }
|
||||||
|
public string Isbn13 { get; set; }
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue