mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-22 22:14:44 -04:00
At a point where we can build. Many TODOs and existing Series-based APIs need to be removed. No track code actually works.
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace NzbDrone.Core.MediaFiles
|
||||
{
|
||||
public class TrackFileMoveResult
|
||||
{
|
||||
public TrackFileMoveResult()
|
||||
{
|
||||
OldFiles = new List<TrackFile>();
|
||||
}
|
||||
|
||||
public TrackFile TrackFile { get; set; }
|
||||
public List<TrackFile> OldFiles { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user