mirror of
https://github.com/Readarr/Readarr
synced 2026-01-15 12:03:17 +01:00
26 lines
653 B
C#
26 lines
653 B
C#
using NzbDrone.Core.Music;
|
|
using System;
|
|
|
|
namespace NzbDrone.Core.Notifications.Webhook
|
|
{
|
|
public class WebhookAlbum
|
|
{
|
|
public WebhookAlbum() { }
|
|
|
|
public WebhookAlbum(Album album)
|
|
{
|
|
Id = album.Id;
|
|
Title = album.Title;
|
|
ReleaseDate = album.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; }
|
|
}
|
|
}
|