jellyfin/MediaBrowser.Model/Devices/DeviceOptions.cs

10 lines
164 B
C#
Raw Normal View History

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