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