35 lines
869 B
C#
35 lines
869 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Crm.Core.Entity.MsgTool.ResultView
|
|
{
|
|
public class MsgTaskInfo
|
|
{
|
|
public MsgToolTaskCmd msgToolTaskCmd { get; set; }
|
|
public IList<MsgToolTaskCmdDetail> msgToolTaskCmdDetails { get; set; }
|
|
}
|
|
public enum TimeType {
|
|
点击通讯录=101,
|
|
翻找主窗体=102,
|
|
定位收索框=103,
|
|
查找联系人=104,
|
|
打开输入框=105,
|
|
粘贴并发送 = 106,
|
|
|
|
}
|
|
public class ConfigItem {
|
|
public TimeType TimeType { get; set; }
|
|
public int min { get; set; }
|
|
public int max { get; set; }
|
|
}
|
|
public class MsgToolSetting
|
|
{
|
|
public bool HasNotice { get; set; }
|
|
public int TaskLimit { get; set; }
|
|
}
|
|
|
|
}
|