using System.Collections.Generic;
using MediaBrowser.Model.Dto;
namespace MediaBrowser.Model.Sync
{
public class SyncDialogOptions
{
///
/// Gets or sets the targets.
///
/// The targets.
public List Targets { get; set; }
///
/// Gets or sets the options.
///
/// The options.
public List Options { get; set; }
///
/// Gets or sets the quality options.
///
/// The quality options.
public List QualityOptions { get; set; }
public SyncDialogOptions()
{
Targets = new List();
Options = new List();
QualityOptions = new List
{
new NameValuePair
{
Name = SyncQuality.Original.ToString(),
Value = SyncQuality.Original.ToString()
},
new NameValuePair
{
Name = SyncQuality.High.ToString(),
Value = SyncQuality.High.ToString()
},
new NameValuePair
{
Name = SyncQuality.Medium.ToString(),
Value = SyncQuality.Medium.ToString()
},
new NameValuePair
{
Name = SyncQuality.Low.ToString(),
Value = SyncQuality.Low.ToString()
}
};
}
}
}