SonoInfoModel.cs 457 B

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