mirror of
https://github.com/Stone-Red-Code/HyperbolicDownloader.git
synced 2026-09-04 17:16:10 +02:00
17 lines
421 B
C#
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
|
|
} |