blob: c96e92049303f57b38431c066641ceff351b79f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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; }
}
}
|