#nullable disable #pragma warning disable CS1591 using System; namespace MediaBrowser.Model.Dto { public class NameIdPair { /// /// Gets or sets the name. /// /// The name. public string Name { get; set; } /// /// Gets or sets the identifier. /// /// The identifier. public string Id { get; set; } } public class NameGuidPair { public string Name { get; set; } public Guid Id { get; set; } } }