42 lines
526 B
C#
42 lines
526 B
C#
|
|
|
|
namespace IRaCIS.Core.Domain.Share
|
|
{
|
|
public enum TrialExternalUserStateEnum
|
|
{
|
|
//待发送
|
|
WaitSent = 0,
|
|
|
|
//已发送
|
|
HasSend = 1,
|
|
|
|
//用户已确认
|
|
UserConfirmed = 2,
|
|
|
|
UserReject = 3,
|
|
|
|
OverTime = 4
|
|
}
|
|
|
|
|
|
public enum TrialSiteUserStateEnum
|
|
{
|
|
//待发送
|
|
WaitSent = 0,
|
|
|
|
//已发送
|
|
HasSend = 1,
|
|
|
|
//用户已确认
|
|
UserConfirmed = 2,
|
|
|
|
UserReject = 3,
|
|
|
|
OverTime = 4
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|