ConnectData.cs 466 B

1234567891011121314151617
  1. 
  2. namespace MediaBrowser.Server.Implementations.Connect
  3. {
  4. public class ConnectData
  5. {
  6. /// <summary>
  7. /// Gets or sets the server identifier.
  8. /// </summary>
  9. /// <value>The server identifier.</value>
  10. public string ServerId { get; set; }
  11. /// <summary>
  12. /// Gets or sets the access key.
  13. /// </summary>
  14. /// <value>The access key.</value>
  15. public string AccessKey { get; set; }
  16. }
  17. }