9 lines
249 B
C#
9 lines
249 B
C#
namespace WebAssembly.Data;
|
|
|
|
public class SeverityType
|
|
{
|
|
public static string Warning = "Warning";
|
|
public static string Information = "Information";
|
|
public static string Error = "Error";
|
|
public static string Success = "Success";
|
|
} |