mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-24 17:46:51 +01:00
stub out mock sync provider
This commit is contained in:
@@ -53,6 +53,8 @@ namespace MediaBrowser.Model.Dto
|
||||
public bool IsUnidentified { get; set; }
|
||||
|
||||
public int? AnimeSeriesIndex { get; set; }
|
||||
|
||||
public bool? SupportsSync { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the DVD season number.
|
||||
|
||||
@@ -303,7 +303,6 @@
|
||||
<Compile Include="Sync\SyncQuality.cs" />
|
||||
<Compile Include="Sync\SyncSchedule.cs" />
|
||||
<Compile Include="Sync\SyncScheduleQuery.cs" />
|
||||
<Compile Include="Sync\SyncScheduleRequest.cs" />
|
||||
<Compile Include="Sync\SyncTarget.cs" />
|
||||
<Compile Include="System\LogFile.cs" />
|
||||
<Compile Include="Themes\AppTheme.cs" />
|
||||
|
||||
@@ -156,6 +156,11 @@ namespace MediaBrowser.Model.Querying
|
||||
/// </summary>
|
||||
Studios,
|
||||
|
||||
/// <summary>
|
||||
/// The synchronize information
|
||||
/// </summary>
|
||||
SyncInfo,
|
||||
|
||||
/// <summary>
|
||||
/// The taglines of the item
|
||||
/// </summary>
|
||||
|
||||
@@ -43,5 +43,10 @@ namespace MediaBrowser.Model.Sync
|
||||
/// </summary>
|
||||
/// <value>The transcoded path.</value>
|
||||
public string TranscodedPath { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the name.
|
||||
/// </summary>
|
||||
/// <value>The name.</value>
|
||||
public string Name { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,19 +10,25 @@ namespace MediaBrowser.Model.Sync
|
||||
/// <value>The device identifier.</value>
|
||||
public List<string> TargetIds { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the item identifier.
|
||||
/// Gets or sets the item ids.
|
||||
/// </summary>
|
||||
/// <value>The item identifier.</value>
|
||||
public string ItemId { get; set; }
|
||||
/// <value>The item ids.</value>
|
||||
public List<string> ItemIds { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the quality.
|
||||
/// </summary>
|
||||
/// <value>The quality.</value>
|
||||
public SyncQuality Quality { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the name.
|
||||
/// </summary>
|
||||
/// <value>The name.</value>
|
||||
public string Name { get; set; }
|
||||
|
||||
public SyncJobRequest()
|
||||
{
|
||||
TargetIds = new List<string>();
|
||||
ItemIds = new List<string>();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,23 +0,0 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MediaBrowser.Model.Sync
|
||||
{
|
||||
public class SyncScheduleRequest
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the device identifier.
|
||||
/// </summary>
|
||||
/// <value>The device identifier.</value>
|
||||
public List<string> TargetIds { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the quality.
|
||||
/// </summary>
|
||||
/// <value>The quality.</value>
|
||||
public SyncQuality Quality { get; set; }
|
||||
|
||||
public SyncScheduleRequest()
|
||||
{
|
||||
TargetIds = new List<string>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user