Files
2023-12-14 22:11:50 +01:00

17 lines
421 B
C#

namespace HyperbolicDownloaderApi.Managment;
public class NotificationMessageEventArgs(NotificationMessageType notificationMessageType, string? message) : EventArgs
{
public NotificationMessageType NotificationMessageType { get; } = notificationMessageType;
public string? Message { get; } = message;
}
public enum NotificationMessageType
{
Info,
Log,
Debug,
Success,
Warning,
Error
}