namespace Nop.Services.Messages; /// /// Message structure /// public struct NotifyData { /// /// Message type (success/warning/error) /// public NotifyType Type { get; set; } /// /// Message text /// public string Message { get; set; } /// /// Get a sets a value indicating whether the message should not be HTML encoded /// public bool Encode { get; set; } }