mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 23:33:20 +01:00
24 lines
667 B
C#
24 lines
667 B
C#
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()
|
|
{
|
|
EnabledCameraUploadDevices = new string[] {};
|
|
}
|
|
}
|
|
|
|
public class DeviceOptions
|
|
{
|
|
public string[] EnabledCameraUploadDevices { get; set; }
|
|
public string CameraUploadPath { get; set; }
|
|
public bool EnableCameraUploadSubfolders { get; set; }
|
|
public string CustomName { get; set; }
|
|
}
|
|
}
|