22 lines
338 B
C#
22 lines
338 B
C#
|
|
namespace MediaBrowser.Model.Sync
|
|
{
|
|
public enum SyncQuality
|
|
{
|
|
/// <summary>
|
|
/// The good
|
|
/// </summary>
|
|
Low = 0,
|
|
|
|
/// <summary>
|
|
/// The better
|
|
/// </summary>
|
|
Medium = 1,
|
|
|
|
/// <summary>
|
|
/// The best
|
|
/// </summary>
|
|
High = 2
|
|
}
|
|
}
|