mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 02:49:05 -07:00
22 lines
492 B
C#
22 lines
492 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 = Array.Empty<string>();
|
|
}
|
|
}
|
|
|
|
public class DeviceOptions
|
|
{
|
|
public string CustomName { get; set; }
|
|
}
|
|
}
|