mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
16 lines
382 B
C#
16 lines
382 B
C#
|
|
namespace MediaBrowser.Model.Devices
|
|
{
|
|
public class DevicesOptions
|
|
{
|
|
public string[] EnabledCameraUploadDevices { get; set; }
|
|
public string CameraUploadPath { get; set; }
|
|
public bool EnableCameraUploadSubfolders { get; set; }
|
|
|
|
public DevicesOptions()
|
|
{
|
|
EnabledCameraUploadDevices = new string[] { };
|
|
}
|
|
}
|
|
}
|