jellyfin/MediaBrowser.Model/Devices/DeviceQuery.cs

22 lines
627 B
C#
Raw Normal View History

2020-02-03 19:49:27 -05:00
#pragma warning disable CS1591
2019-01-02 04:55:05 -05:00
using System;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Model.Devices
{
public class DeviceQuery
{
/// <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; }
2020-02-03 19:49:27 -05:00
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets or sets the user identifier.
/// </summary>
/// <value>The user identifier.</value>
2019-01-02 04:55:05 -05:00
public Guid UserId { get; set; }
2018-12-27 18:27:57 -05:00
}
}