namespace MediaBrowser.Controller.Dlna
{
public class DeviceProfile
{
///
/// Gets or sets the name.
///
/// 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 manufacturer.
///
///
/// The manufacturer.
///
public string Manufacturer { get; set; }
///
/// Gets or sets the transcoding profiles.
///
/// The transcoding profiles.
public TranscodingProfile[] TranscodingProfiles { get; set; }
///
/// Gets or sets the direct play profiles.
///
/// The direct play profiles.
public DirectPlayProfile[] DirectPlayProfiles { get; set; }
public DeviceProfile()
{
DirectPlayProfiles = new DirectPlayProfile[] { };
TranscodingProfiles = new TranscodingProfile[] { };
}
}
}