2020-01-22 13:00:07 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 12:54:44 -07:00
|
|
|
using System.Collections.Generic;
|
2019-01-13 12:16:19 -07:00
|
|
|
using Emby.Dlna.Common;
|
2016-10-29 15:22:20 -07:00
|
|
|
using MediaBrowser.Model.Dlna;
|
|
|
|
|
2016-10-29 15:34:54 -07:00
|
|
|
namespace Emby.Dlna.PlayTo
|
2016-10-29 15:22:20 -07:00
|
|
|
{
|
|
|
|
public class DeviceInfo
|
|
|
|
{
|
|
|
|
public DeviceInfo()
|
|
|
|
{
|
|
|
|
Name = "Generic Device";
|
|
|
|
}
|
|
|
|
|
|
|
|
public string UUID { get; set; }
|
|
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
public string ModelName { get; set; }
|
|
|
|
|
|
|
|
public string ModelNumber { get; set; }
|
|
|
|
|
|
|
|
public string ModelDescription { get; set; }
|
|
|
|
|
|
|
|
public string ModelUrl { get; set; }
|
|
|
|
|
|
|
|
public string Manufacturer { get; set; }
|
|
|
|
|
|
|
|
public string SerialNumber { get; set; }
|
|
|
|
|
|
|
|
public string ManufacturerUrl { get; set; }
|
|
|
|
|
|
|
|
public string PresentationUrl { get; set; }
|
|
|
|
|
|
|
|
private string _baseUrl = string.Empty;
|
|
|
|
public string BaseUrl
|
|
|
|
{
|
2019-01-13 13:31:14 -07:00
|
|
|
get => _baseUrl;
|
|
|
|
set => _baseUrl = value;
|
2016-10-29 15:22:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public DeviceIcon Icon { get; set; }
|
|
|
|
|
|
|
|
private readonly List<DeviceService> _services = new List<DeviceService>();
|
2019-01-13 13:31:14 -07:00
|
|
|
public List<DeviceService> Services => _services;
|
2016-10-29 15:22:20 -07:00
|
|
|
|
|
|
|
public DeviceIdentification ToDeviceIdentification()
|
|
|
|
{
|
|
|
|
return new DeviceIdentification
|
|
|
|
{
|
|
|
|
Manufacturer = Manufacturer,
|
|
|
|
ModelName = ModelName,
|
|
|
|
ModelNumber = ModelNumber,
|
|
|
|
FriendlyName = Name,
|
|
|
|
ManufacturerUrl = ManufacturerUrl,
|
|
|
|
ModelUrl = ModelUrl,
|
|
|
|
ModelDescription = ModelDescription,
|
|
|
|
SerialNumber = SerialNumber
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|