12345678910111213141516171819202122232425262728 |
- #pragma warning disable CS1591
- #pragma warning disable SA1600
- using System;
- namespace MediaBrowser.Model.Dto
- {
- public class NameIdPair
- {
- /// <summary>
- /// Gets or sets the name.
- /// </summary>
- /// <value>The name.</value>
- public string Name { get; set; }
-
- /// <summary>
- /// Gets or sets the identifier.
- /// </summary>
- /// <value>The identifier.</value>
- public string Id { get; set; }
- }
- public class NameGuidPair
- {
- public string Name { get; set; }
- public Guid Id { get; set; }
- }
- }
|