20 lines
406 B
C#
20 lines
406 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
|
|
{
|
|
/// <summary>
|
|
/// 通知消息类
|
|
/// </summary>
|
|
public class NotifyMessage
|
|
{
|
|
/// <summary>
|
|
/// 任务名称
|
|
/// </summary>
|
|
public string TaskName { get; set; } = string.Empty;
|
|
}
|
|
}
|