8 lines
133 B
C#
8 lines
133 B
C#
namespace NBF
|
|
{
|
|
public class ErrorCode
|
|
{
|
|
public const int Success = 0;
|
|
public const int Error = 1;
|
|
}
|
|
} |