feat(models): add UserCreated and FaceEnrolled to sync results
Extends sync result types with UserCreated, FaceEnrolled, and OverallResult.PARTIAL so create/delete flows can report user-only vs face-enrollment outcomes.main
parent
e7714452da
commit
f1e20ddf0b
|
|
@ -15,6 +15,8 @@ public sealed class EmployeeSyncResult
|
|||
public string UserStatus { get; set; } = "Not started";
|
||||
public string FaceStatus { get; set; } = "Not requested";
|
||||
public string VerificationStatus { get; set; } = "Not requested";
|
||||
public bool UserCreated { get; set; }
|
||||
public bool FaceEnrolled { get; set; }
|
||||
public string OverallResult { get; set; } = "SKIPPED";
|
||||
public string Reason { get; set; } = "";
|
||||
public HrmsEmployee? Employee { get; init; }
|
||||
|
|
|
|||
Loading…
Reference in New Issue