地铁二期项目正式开始

VoicePlayModel.cs 444B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Data;
  4. using System.Linq;
  5. using System.Web;
  6. namespace YTSoft.BaseCallCenter.MVCWeb.Models
  7. {
  8. public class VoicePlayModel
  9. {
  10. /// <summary>
  11. /// 录音播放路径
  12. /// </summary>
  13. public string playpath { get; set; }
  14. /// <summary>
  15. /// 录音下载路径
  16. /// </summary>
  17. public string downpath { get; set; }
  18. }
  19. }