MicDeviceInfoModel.cs 388 B

1234567891011121314
  1. using FISLib.Hardware;
  2. using System.Collections.Generic;
  3. namespace Vinno.FIS.Sonopost.WebApi.Models
  4. {
  5. internal class MicDeviceInfoModel : FISMicInfo
  6. {
  7. public bool IsEnable { get; set; }
  8. public MicDeviceInfoModel(string id, string name, List<string> hardwareId, uint volume, bool isMute) : base(id, name, hardwareId, volume, isMute)
  9. {
  10. }
  11. }
  12. }