2014-03-13 15:08:02 -04:00
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Dlna
|
|
|
|
|
|
{
|
2014-03-15 00:14:07 -04:00
|
|
|
|
public class DeviceProfile
|
2014-03-13 15:08:02 -04:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the name.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The name.</value>
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the type of the client.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The type of the client.</value>
|
|
|
|
|
|
public string ClientType { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the transcoding profiles.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The transcoding profiles.</value>
|
|
|
|
|
|
public TranscodingProfile[] TranscodingProfiles { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the direct play profiles.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The direct play profiles.</value>
|
|
|
|
|
|
public DirectPlayProfile[] DirectPlayProfiles { get; set; }
|
|
|
|
|
|
|
2014-03-17 10:48:16 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the identification.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The identification.</value>
|
|
|
|
|
|
public DeviceIdentification Identification { get; set; }
|
|
|
|
|
|
|
2014-03-15 00:14:07 -04:00
|
|
|
|
public DeviceProfile()
|
2014-03-13 15:08:02 -04:00
|
|
|
|
{
|
|
|
|
|
|
DirectPlayProfiles = new DirectPlayProfile[] { };
|
|
|
|
|
|
TranscodingProfiles = new TranscodingProfile[] { };
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|