diff options
Diffstat (limited to 'MediaBrowser.Model/Devices/DevicesOptions.cs')
| -rw-r--r-- | MediaBrowser.Model/Devices/DevicesOptions.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Devices/DevicesOptions.cs b/MediaBrowser.Model/Devices/DevicesOptions.cs new file mode 100644 index 000000000..6c2082e8d --- /dev/null +++ b/MediaBrowser.Model/Devices/DevicesOptions.cs @@ -0,0 +1,14 @@ + +namespace MediaBrowser.Model.Devices +{ + public class DevicesOptions + { + public string[] EnabledCameraUploadDevices { get; set; } + public string CameraUploadPath { get; set; } + + public DevicesOptions() + { + EnabledCameraUploadDevices = new string[] { }; + } + } +} |
