jellyfin/MediaBrowser.Model/Devices/DeviceQuery.cs

23 lines
936 B
C#
Raw Normal View History

2014-12-13 04:56:30 +01:00

namespace MediaBrowser.Model.Devices
{
public class DeviceQuery
{
/// <summary>
/// Gets or sets a value indicating whether [supports unique identifier].
/// </summary>
/// <value><c>null</c> if [supports unique identifier] contains no value, <c>true</c> if [supports unique identifier]; otherwise, <c>false</c>.</value>
2015-01-20 06:19:13 +01:00
public bool? SupportsPersistentIdentifier { get; set; }
2014-12-15 06:49:04 +01:00
/// <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; }
2014-12-31 07:24:49 +01:00
/// <summary>
/// Gets or sets the user identifier.
/// </summary>
/// <value>The user identifier.</value>
public string UserId { get; set; }
2014-12-13 04:56:30 +01:00
}
}