irc-netcore-api/IRaCIS.Core.Domain.Share/Trial/TrialExpedited.cs

38 lines
499 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

namespace IRaCIS.Core.Domain.Share
{
public enum TrialExpedited
{
All=-1,
None=0,
ExpeditedIn24H = 1,
ExpeditedIn48H = 2
}
public enum TrialType
{
//正式项目
OfficialTrial = 1,
NoneOfficial = 0,
Training = 2
}
public enum AttendedReviewerType
{
//0全部中国医生 1美国医生 2既有中国医生也有美国医生
CN=0,
US=1,
USAndCN
}
}