Files
2025-08-22 13:07:48 +09:00

9 lines
129 B
C#

namespace LightlessSync.Services.Events;
public enum EventSeverity
{
Informational = 0,
Warning = 1,
Error = 2
}