Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ErrorSeverity.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4
6{
7 public enum ErrorSeverity : uint
8 {
9 Ignore = 0,
10 Normal = 1,
11 Severe = 2,
12 Crititcal = 3
13 }
14}