namespace MediaBrowser.Model.Dlna
{
public class DeviceProfileInfo
{
///
/// Gets or sets the identifier.
///
/// The identifier.
public string Id { get; set; }
///
/// Gets or sets the name.
///
/// The name.
public string Name { get; set; }
///
/// Gets or sets the type.
///
/// The type.
public DeviceProfileType Type { get; set; }
}
public enum DeviceProfileType
{
System = 0,
User = 1
}
}