12345678910111213141516 |
- using FISLib.Hardware;
- using System.Collections.Generic;
- namespace Vinno.FIS.Sonopost.WebApi.Models
- {
- internal class VideoDeviceInfoModel : FISCameraInfo
- {
- public bool IsEnable { get; set; }
- public int Width { get; set; }
- public int Height { get; set; }
- public VideoDeviceInfoModel(string id, string name, List<string> hardwareId, IReadOnlyList<FISCameraCaptureCapability> capabilities) : base(id, name, hardwareId, capabilities)
- {
- }
- }
- }
|