display sync targets

This commit is contained in:
Luke Pulverenti
2014-12-15 00:49:04 -05:00
parent e92e036574
commit 7f7d2f85e3
3 changed files with 32 additions and 3 deletions

View File

@@ -13,5 +13,10 @@ namespace MediaBrowser.Model.Devices
/// </summary>
/// <value><c>null</c> if [supports unique identifier] contains no value, <c>true</c> if [supports unique identifier]; otherwise, <c>false</c>.</value>
public bool? SupportsUniqueIdentifier { get; set; }
/// <summary>
/// Gets or sets a value indicating whether [supports synchronize].
/// </summary>
/// <value><c>null</c> if [supports synchronize] contains no value, <c>true</c> if [supports synchronize]; otherwise, <c>false</c>.</value>
public bool? SupportsSync { get; set; }
}
}