1234567891011121314 |
- using FISLib.Hardware;
- using System.Collections.Generic;
- namespace Vinno.FIS.Sonopost.WebApi.Models
- {
- internal class MicDeviceInfoModel : FISMicInfo
- {
- public bool IsEnable { get; set; }
- public MicDeviceInfoModel(string id, string name, List<string> hardwareId, uint volume, bool isMute) : base(id, name, hardwareId, volume, isMute)
- {
- }
- }
- }
|