NameIdPair.cs 591 B

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