raflop/ToastNotifications

View on GitHub
Src/ToastNotifications/Core/MessageOptions.cs

Summary

Maintainability
A
0 mins
Test Coverage
using System;

namespace ToastNotifications.Core
{
    public class MessageOptions
    {
        public double? FontSize { get; set; }

        public bool ShowCloseButton { get; set; } = true;

        public object Tag { get; set; }

        public bool FreezeOnMouseEnter { get; set; } = true;

        public Action<NotificationBase> NotificationClickAction { get; set; }

        public Action<NotificationBase> CloseClickAction { get; set; }
        public bool UnfreezeOnMouseLeave { get; set; } = false;
    }
}