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

16 lines
382 B
C#
Raw Normal View History

2014-10-11 20:38:13 +00:00

namespace MediaBrowser.Model.Devices
{
public class DevicesOptions
{
public string[] EnabledCameraUploadDevices { get; set; }
public string CameraUploadPath { get; set; }
2014-10-12 01:46:02 +00:00
public bool EnableCameraUploadSubfolders { get; set; }
2014-10-11 20:38:13 +00:00
public DevicesOptions()
{
EnabledCameraUploadDevices = new string[] { };
}
}
}