added sync model objects

This commit is contained in:
Luke Pulverenti
2014-07-15 00:12:26 -04:00
parent 98012480f7
commit 6375411f53
14 changed files with 287 additions and 1 deletions

View File

@@ -0,0 +1,21 @@

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
}
}