namespace MediaBrowser.Model.Dto { public class NameValuePair { /// /// Gets or sets the name. /// /// The name. public string Name { get; set; } /// /// Gets or sets the value. /// /// The value. public string Value { get; set; } } }