SyncAccount.cs 729 B

12345678910111213141516171819202122232425262728
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Controller.Sync
  3. {
  4. public class SyncAccount
  5. {
  6. /// <summary>
  7. /// Gets or sets the name.
  8. /// </summary>
  9. /// <value>The name.</value>
  10. public string Name { get; set; }
  11. /// <summary>
  12. /// Gets or sets the identifier.
  13. /// </summary>
  14. /// <value>The identifier.</value>
  15. public string Id { get; set; }
  16. /// <summary>
  17. /// Gets or sets the user identifier.
  18. /// </summary>
  19. /// <value>The user identifier.</value>
  20. public List<string> UserIds { get; set; }
  21. public SyncAccount()
  22. {
  23. UserIds = new List<string>();
  24. }
  25. }
  26. }