jellyfin-server/MediaBrowser.Model/Devices/DeviceOptions.cs

10 lines
163 B
C#
Raw Normal View History

2020-05-14 21:13:45 +00:00
#pragma warning disable CS1591
namespace MediaBrowser.Model.Devices
{
public class DeviceOptions
{
public string CustomName { get; set; }
}
}