NameIdPair.cs 572 B

123456789101112131415161718192021222324252627
  1. #pragma warning disable CS1591
  2. using System;
  3. namespace MediaBrowser.Model.Dto
  4. {
  5. public class NameIdPair
  6. {
  7. /// <summary>
  8. /// Gets or sets the name.
  9. /// </summary>
  10. /// <value>The name.</value>
  11. public string Name { get; set; }
  12. /// <summary>
  13. /// Gets or sets the identifier.
  14. /// </summary>
  15. /// <value>The identifier.</value>
  16. public string Id { get; set; }
  17. }
  18. public class NameGuidPair
  19. {
  20. public string Name { get; set; }
  21. public Guid Id { get; set; }
  22. }
  23. }