@@ -30,15 +30,15 @@ namespace IRaCIS.Core.Domain.Models
|
||||
|
||||
/// <summary>
|
||||
|
||||
public string Email { get; set; }
|
||||
|
||||
|
||||
public string FirstName { get; set; }
|
||||
|
||||
public string LastName { get; set; }
|
||||
public string Email { get; set; } = String.Empty;
|
||||
|
||||
|
||||
public string OrganizationName { get; set; }=String.Empty;
|
||||
public string FirstName { get; set; } = String.Empty;
|
||||
|
||||
public string LastName { get; set; } = String.Empty;
|
||||
|
||||
|
||||
public string OrganizationName { get; set; }=String.Empty;
|
||||
|
||||
|
||||
public bool IsSystemUser{ get; set; }
|
||||
@@ -57,12 +57,12 @@ namespace IRaCIS.Core.Domain.Models
|
||||
|
||||
public DateTime? ConfirmTime { get; set; }
|
||||
|
||||
public string RejectReason { get; set; }
|
||||
public string RejectReason { get; set; } = String.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 邀请状态
|
||||
/// </summary>
|
||||
[Required]
|
||||
/// <summary>
|
||||
/// 邀请状态
|
||||
/// </summary>
|
||||
[Required]
|
||||
public TrialExternalUserStateEnum InviteState { get; set; } = TrialExternalUserStateEnum.WaitSent;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user