22 lines
339 B
C#
22 lines
339 B
C#
|
|
|||
|
namespace MediaBrowser.Model.Sync
|
|||
|
{
|
|||
|
public enum SyncQuality
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// The good
|
|||
|
/// </summary>
|
|||
|
Good = 0,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// The better
|
|||
|
/// </summary>
|
|||
|
Better = 1,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// The best
|
|||
|
/// </summary>
|
|||
|
Best = 2
|
|||
|
}
|
|||
|
}
|