|
@@ -3,6 +3,8 @@ using System.Collections.Generic;
|
|
|
using System.Linq;
|
|
|
using System.Text;
|
|
|
using System.Threading.Tasks;
|
|
|
+using Hotline.Share.Enums.FlowEngine;
|
|
|
+using XF.Utility.EnumExtensions;
|
|
|
|
|
|
namespace Hotline.Share.Dtos.FlowEngine
|
|
|
{
|
|
@@ -18,5 +20,8 @@ namespace Hotline.Share.Dtos.FlowEngine
|
|
|
public DateTime ExpiredTime { get; set; }
|
|
|
|
|
|
public IReadOnlyList<string> Components { get; set; }
|
|
|
+
|
|
|
+ public IEnumerable<KeyValuePair<int, string>> CommunicationModeOptions =>
|
|
|
+ EnumExts.GetDescriptions<ERealCommunicationMode>();
|
|
|
}
|
|
|
}
|