mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-23 22:25:14 -04:00
11 lines
273 B
C#
11 lines
273 B
C#
namespace NzbDrone.Core.MediaFiles
|
|
{
|
|
public class RenameMovieFilePreview
|
|
{
|
|
public int MovieId { get; set; }
|
|
public int MovieFileId { get; set; }
|
|
public string ExistingPath { get; set; }
|
|
public string NewPath { get; set; }
|
|
}
|
|
}
|