| 123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Linq;
- using System.Web;
- namespace YTSoft.BaseCallCenter.MVCWeb.Models
- {
- public class VoicePlayModel
- {
- /// <summary>
- /// 录音播放路径
- /// </summary>
- public string playpath { get; set; }
- /// <summary>
- /// 录音下载路径
- /// </summary>
- public string downpath { get; set; }
- }
- }
|