VideoDeviceInfoModel.cs 503 B

12345678910111213141516
  1. using FISLib.Hardware;
  2. using System.Collections.Generic;
  3. namespace Vinno.FIS.Sonopost.WebApi.Models
  4. {
  5. internal class VideoDeviceInfoModel : FISCameraInfo
  6. {
  7. public bool IsEnable { get; set; }
  8. public int Width { get; set; }
  9. public int Height { get; set; }
  10. public VideoDeviceInfoModel(string id, string name, List<string> hardwareId, IReadOnlyList<FISCameraCaptureCapability> capabilities) : base(id, name, hardwareId, capabilities)
  11. {
  12. }
  13. }
  14. }