Files
Readarr/src/NzbDrone.Core/Notifications/Webhook/WebhookBook.cs
T
2020-05-13 20:42:22 -04:00

29 lines
661 B
C#

using System;
using NzbDrone.Core.Books;
namespace NzbDrone.Core.Notifications.Webhook
{
public class WebhookBook
{
public WebhookBook()
{
}
public WebhookBook(Book book)
{
Id = book.Id;
Title = book.Title;
ReleaseDate = book.ReleaseDate;
}
public int Id { get; set; }
public string Title { get; set; }
public DateTime? ReleaseDate { get; set; }
public string Quality { get; set; }
public int QualityVersion { get; set; }
public string ReleaseGroup { get; set; }
public string SceneName { get; set; }
}
}