mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-02-11 10:26:57 +00:00
23 lines
516 B
C#
23 lines
516 B
C#
using NzbDrone.Core.Music;
|
|
|
|
namespace NzbDrone.Core.Notifications.Webhook
|
|
{
|
|
public class WebhookArtist
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Path { get; set; }
|
|
public string MBId { get; set; }
|
|
|
|
public WebhookArtist() { }
|
|
|
|
public WebhookArtist(Artist artist)
|
|
{
|
|
Id = artist.Id;
|
|
Name = artist.Name;
|
|
Path = artist.Path;
|
|
MBId = artist.ForeignArtistId;
|
|
}
|
|
}
|
|
}
|