mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-28 23:06:43 -04:00
17 lines
469 B
C#
17 lines
469 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Api.REST;
|
|
|
|
namespace NzbDrone.Api.Episodes
|
|
{
|
|
public class RenameEpisodeResource : RestResource
|
|
{
|
|
public Int32 SeriesId { get; set; }
|
|
public Int32 SeasonNumber { get; set; }
|
|
public List<Int32> EpisodeNumbers { get; set; }
|
|
public Int32 EpisodeFileId { get; set; }
|
|
public String ExistingPath { get; set; }
|
|
public String NewPath { get; set; }
|
|
}
|
|
}
|