mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 08:15:28 +03:00
sync updates
This commit is contained in:
24
MediaBrowser.Model/Sync/SyncDialogOptions.cs
Normal file
24
MediaBrowser.Model/Sync/SyncDialogOptions.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MediaBrowser.Model.Sync
|
||||
{
|
||||
public class SyncDialogOptions
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the targets.
|
||||
/// </summary>
|
||||
/// <value>The targets.</value>
|
||||
public List<SyncTarget> Targets { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the options.
|
||||
/// </summary>
|
||||
/// <value>The options.</value>
|
||||
public List<SyncOptions> Options { get; set; }
|
||||
|
||||
public SyncDialogOptions()
|
||||
{
|
||||
Targets = new List<SyncTarget>();
|
||||
Options = new List<SyncOptions>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user