PinCreationResult.cs 267 B

1234567891011
  1. 
  2. namespace MediaBrowser.Model.Connect
  3. {
  4. public class PinCreationResult
  5. {
  6. public string Pin { get; set; }
  7. public string DeviceId { get; set; }
  8. public bool IsConfirmed { get; set; }
  9. public bool IsExpired { get; set; }
  10. }
  11. }