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