mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-27 22:56:45 -04:00
f77a2feeef
* Stylecop Rules and Fixes
27 lines
606 B
C#
27 lines
606 B
C#
using NzbDrone.Core.Music;
|
|
|
|
namespace NzbDrone.Core.Notifications.Webhook
|
|
{
|
|
public class WebhookTrack
|
|
{
|
|
public WebhookTrack()
|
|
{
|
|
}
|
|
|
|
public WebhookTrack(Track track)
|
|
{
|
|
Id = track.Id;
|
|
Title = track.Title;
|
|
TrackNumber = track.TrackNumber;
|
|
}
|
|
|
|
public int Id { get; set; }
|
|
public string Title { get; set; }
|
|
public string TrackNumber { get; set; }
|
|
|
|
public string Quality { get; set; }
|
|
public int QualityVersion { get; set; }
|
|
public string ReleaseGroup { get; set; }
|
|
}
|
|
}
|