mirror of
https://github.com/Readarr/Readarr
synced 2026-02-15 19:22:49 +01:00
15 lines
387 B
C#
15 lines
387 B
C#
using NzbDrone.Core.MediaFiles;
|
|
|
|
namespace NzbDrone.Core.Notifications.Webhook
|
|
{
|
|
public class WebhookRenamedBookFile : WebhookBookFile
|
|
{
|
|
public WebhookRenamedBookFile(RenamedBookFile renamedMovie)
|
|
: base(renamedMovie.BookFile)
|
|
{
|
|
PreviousPath = renamedMovie.PreviousPath;
|
|
}
|
|
|
|
public string PreviousPath { get; set; }
|
|
}
|
|
}
|