123456789101112131415 |
- using FISLib.Hardware;
- using System.Collections.Generic;
- namespace Vinno.FIS.Sonopost.WebApi.Models
- {
- internal class SonoInfoModel : VideoDeviceInfoModel
- {
- public string Model { get; set; }
- public string Brand { get; set; }
- public SonoInfoModel(string id, string name, List<string> hardwareId, IReadOnlyList<FISCameraCaptureCapability> capabilities) : base(id, name, hardwareId, capabilities)
- {
- }
- }
- }
|