jellyfin/MediaBrowser.Model/Devices/DevicesOptions.cs

22 lines
492 B
C#
Raw Normal View History

2018-12-27 18:27:57 -05: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 16:43:48 -05:00
EnabledCameraUploadDevices = Array.Empty<string>();
2018-12-27 18:27:57 -05:00
}
}
public class DeviceOptions
{
public string CustomName { get; set; }
}
}