10 lines
115 B
C#
10 lines
115 B
C#
|
|
namespace TrueCV.Domain.Enums;
|
||
|
|
|
||
|
|
public enum CheckStatus
|
||
|
|
{
|
||
|
|
Pending,
|
||
|
|
Processing,
|
||
|
|
Completed,
|
||
|
|
Failed
|
||
|
|
}
|