mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 22:13:06 +03:00
12 lines
267 B
C#
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; }
|
|
}
|
|
}
|