jellyfin/MediaBrowser.Model/Connect/PinCreationResult.cs

12 lines
267 B
C#
Raw Normal View History


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