mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 02:49:05 -07:00
67 lines
1.4 KiB
C#
67 lines
1.4 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Dlna.PlayTo
|
|
{
|
|
public class DeviceInfo
|
|
{
|
|
public DeviceInfo()
|
|
{
|
|
ClientType = "DLNA";
|
|
Name = "Generic Device";
|
|
}
|
|
|
|
public string UUID { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string ClientType { get; set; }
|
|
|
|
private string _displayName = string.Empty;
|
|
public string DisplayName
|
|
{
|
|
get
|
|
{
|
|
return string.IsNullOrEmpty(_displayName) ? Name : _displayName;
|
|
}
|
|
set
|
|
{
|
|
_displayName = value;
|
|
}
|
|
}
|
|
|
|
public string ModelName { get; set; }
|
|
|
|
public string ModelNumber { get; set; }
|
|
|
|
public string Manufacturer { get; set; }
|
|
|
|
public string ManufacturerUrl { get; set; }
|
|
|
|
public string PresentationUrl { get; set; }
|
|
|
|
private string _baseUrl = string.Empty;
|
|
public string BaseUrl
|
|
{
|
|
get
|
|
{
|
|
return _baseUrl;
|
|
}
|
|
set
|
|
{
|
|
_baseUrl = value;
|
|
}
|
|
}
|
|
|
|
public uIcon Icon { get; set; }
|
|
|
|
private readonly List<DeviceService> _services = new List<DeviceService>();
|
|
public List<DeviceService> Services
|
|
{
|
|
get
|
|
{
|
|
return _services;
|
|
}
|
|
}
|
|
}
|
|
}
|