using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CRM.Core.Model.Entity { [Table("voice_config")] public class Voice_Config { [Key] public string voice_code { get; set; } public string Appkey { get; set; } public string accessKeyId { get; set; } public string accessKeySecret { get; set; } public string content { get; set; } public int status { get; set; } } }