You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
419 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace JT1078.Gateway.Coordinator.Dtos
  6. {
  7. public class ChannelCloseRequest
  8. {
  9. /// <summary>
  10. /// 设备sim卡号
  11. /// </summary>
  12. public string Sim { get; set; }
  13. /// <summary>
  14. /// 通道号
  15. /// </summary>
  16. public int ChannelNo { get; set; }
  17. }
  18. }