#nullable disable
#pragma warning disable CS1591
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; }
    }
}