longfellowJian 76792ef9ad 初始化
2025-03-27 16:06:44 +08:00

17 lines
398 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using MT.Platform.Common;
namespace Services.NotificationBroker.Notifications
{
/// <summary>
/// Notification to be used to send written log texts to interested parties.
/// </summary>
public class LogWrittenNotification : Notification
{
public string Text { get; set; }
}
}