mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 19:57:23 +01:00
8 lines
130 B
C#
8 lines
130 B
C#
namespace MareSynchronos.Services.Events;
|
|
|
|
public enum EventSeverity
|
|
{
|
|
Informational = 0,
|
|
Warning = 1,
|
|
Error = 2
|
|
}
|