NameIdPair.cs 539 B

123456789101112131415161718192021222324
  1. using System;
  2. namespace MediaBrowser.Model.Dto
  3. {
  4. public class NameIdPair
  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. }
  17. public class NameGuidPair
  18. {
  19. public string Name { get; set; }
  20. public Guid Id { get; set; }
  21. }
  22. }