jellyfin/MediaBrowser.Model/Devices/DevicesOptions.cs

22 lines
492 B
C#
Raw Normal View History

2018-12-27 23:27:57 +00:00
using System;
namespace MediaBrowser.Model.Devices
{
public class DevicesOptions
{
public string[] EnabledCameraUploadDevices { get; set; }
public string CameraUploadPath { get; set; }
public bool EnableCameraUploadSubfolders { get; set; }
public DevicesOptions()
{
2018-12-27 21:43:48 +00:00
EnabledCameraUploadDevices = Array.Empty<string>();
2018-12-27 23:27:57 +00:00
}
}
public class DeviceOptions
{
public string CustomName { get; set; }
}
}