15 lines
206 B
C#
15 lines
206 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace VolPro.Core.Enums
|
|
{
|
|
public enum ApiStatutsCode
|
|
{
|
|
False = 0,
|
|
Ok = 1,
|
|
TokenExpire = 2
|
|
|
|
}
|
|
}
|