18 lines
388 B
C#
18 lines
388 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tnb.Common.Core.EventBus.Constants
|
|
{
|
|
public class EventSubscribeEventConsts
|
|
{
|
|
/// <summary>
|
|
/// 预任务执行EventId
|
|
/// </summary>
|
|
public const string TASKSTATUSCHANGE_EVENTID = "DisTask:TaskStatusChange";
|
|
|
|
}
|
|
}
|