namespace MediaBrowser.Dlna.PlayTo.Configuration
{
public class DlnaProfile
{
///
/// Gets or sets the name to be displayed.
///
///
/// The name.
///
public string Name { get; set; }
///
/// Gets or sets the type of the client.
///
///
/// The type of the client.
///
public string ClientType { get; set; }
///
/// Gets or sets the name of the friendly.
///
///
/// The name of the friendly.
///
public string FriendlyName { get; set; }
///
/// Gets or sets the model number.
///
///
/// The model number.
///
public string ModelNumber { get; set; }
///
/// Gets or sets the name of the model.
///
///
/// The name of the model.
///
public string ModelName { get; set; }
///
/// Gets or sets the transcode settings.
///
///
/// The transcode settings.
///
public TranscodeSettings[] TranscodeSettings { get; set; }
}
}