mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-03 09:09:42 +02:00
16 lines
360 B
C#
16 lines
360 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
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; }
|
|
}
|
|
}
|