-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix update and add validation1 (#754)
# Description This PR includes the following proposed change(s): - fix update and add validation1
- Loading branch information
1 parent
02be242
commit 247c0fe
Showing
6 changed files
with
129 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
namespace Spd.Manager.Licence; | ||
internal partial class SecurityWorkerAppManager | ||
{ | ||
private record ChangeSpec | ||
{ | ||
public bool CategoriesChanged { get; set; } //full update | ||
public bool DogRestraintsChanged { get; set; } //full update | ||
public bool PeaceOfficerStatusChanged { get; set; } //task | ||
public Guid? PeaceOfficerStatusChangeTaskId { get; set; } | ||
public bool MentalHealthStatusChanged { get; set; } //task | ||
public Guid? MentalHealthStatusChangeTaskId { get; set; } | ||
public bool CriminalHistoryChanged { get; set; } //task | ||
public Guid? CriminalHistoryStatusChangeTaskId { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.