@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
+using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
@@ -11,21 +12,25 @@ namespace Hotline.Share.Enums.CallCenter
/// <summary>
/// 未开始
/// </summary>
+ [Description("未开始")]
NoBegin = 0,
/// 进行中
+ [Description("进行中")]
Underway = 1,
/// 转写成功
+ [Description("转写成功")]
Succeed = 2,
/// 转写失败
+ [Description("转写失败")]
Fail = 3,
}