mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-16 03:03:40 +01:00
fix portable and 3.5 project references
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
namespace MediaBrowser.Model.FileOrganization
|
||||
{
|
||||
public class EpisodeFileOrganizationRequest
|
||||
{
|
||||
public string ResultId { get; set; }
|
||||
|
||||
public string SeriesId { get; set; }
|
||||
|
||||
public int SeasonNumber { get; set; }
|
||||
|
||||
public int EpisodeNumber { get; set; }
|
||||
|
||||
public int? EndingEpisodeNumber { get; set; }
|
||||
|
||||
public bool RememberCorrection { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -100,18 +100,4 @@ namespace MediaBrowser.Model.FileOrganization
|
||||
DuplicatePaths = new List<string>();
|
||||
}
|
||||
}
|
||||
|
||||
public enum FileSortingStatus
|
||||
{
|
||||
Success,
|
||||
Failure,
|
||||
SkippedExisting
|
||||
}
|
||||
|
||||
public enum FileOrganizerType
|
||||
{
|
||||
Movie,
|
||||
Episode,
|
||||
Song
|
||||
}
|
||||
}
|
||||
|
||||
@@ -15,19 +15,4 @@ namespace MediaBrowser.Model.FileOrganization
|
||||
/// <value>The limit.</value>
|
||||
public int? Limit { get; set; }
|
||||
}
|
||||
|
||||
public class EpisodeFileOrganizationRequest
|
||||
{
|
||||
public string ResultId { get; set; }
|
||||
|
||||
public string SeriesId { get; set; }
|
||||
|
||||
public int SeasonNumber { get; set; }
|
||||
|
||||
public int EpisodeNumber { get; set; }
|
||||
|
||||
public int? EndingEpisodeNumber { get; set; }
|
||||
|
||||
public bool RememberCorrection { get; set; }
|
||||
}
|
||||
}
|
||||
9
MediaBrowser.Model/FileOrganization/FileOrganizerType.cs
Normal file
9
MediaBrowser.Model/FileOrganization/FileOrganizerType.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace MediaBrowser.Model.FileOrganization
|
||||
{
|
||||
public enum FileOrganizerType
|
||||
{
|
||||
Movie,
|
||||
Episode,
|
||||
Song
|
||||
}
|
||||
}
|
||||
9
MediaBrowser.Model/FileOrganization/FileSortingStatus.cs
Normal file
9
MediaBrowser.Model/FileOrganization/FileSortingStatus.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace MediaBrowser.Model.FileOrganization
|
||||
{
|
||||
public enum FileSortingStatus
|
||||
{
|
||||
Success,
|
||||
Failure,
|
||||
SkippedExisting
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user