jellyfin/MediaBrowser.Model/Devices/DeviceOptions.cs

10 lines
164 B
C#
Raw Normal View History

2020-05-14 23:13:45 +02:00
#pragma warning disable CS1591
namespace MediaBrowser.Model.Devices
{
public class DeviceOptions
{
2020-06-03 11:54:01 +02:00
public string? CustomName { get; set; }
2020-05-14 23:13:45 +02:00
}
}