crm.core/code/Crm.Core.Entity/MsgTool/ResultView/MsgTaskInfo.cs

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; }
}
}