using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hotline.Share.Dtos.CallCenter
{
public class VoiceEvaluationButtonDto
{
///
/// 应用ID
///
public string? AppId { get; set; }
///
/// 应用密钥
///
public string? AppSecret { get; set; }
///
/// 用户标识,我们传过去的
///
public string? CustomerId { get; set; }
///
/// 用户电话号码
///
public string? Called { get; set; }
///
/// 按键内容
///
public string? Content { get; set; }
}
}