jellyfin/MediaBrowser.Model/Connect/PinCreationResult.cs
2014-10-14 20:05:09 -04:00

12 lines
267 B
C#

namespace MediaBrowser.Model.Connect
{
public class PinCreationResult
{
public string Pin { get; set; }
public string DeviceId { get; set; }
public bool IsConfirmed { get; set; }
public bool IsExpired { get; set; }
}
}