You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: DigitalLearningSolutions.Web/ViewModels/TrackingSystem/Centre/Configuration/EditCentreManagerDetailsViewModel.cs
-3Lines changed: 0 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -19,15 +19,12 @@ public EditCentreManagerDetailsViewModel(Centre centre)
19
19
20
20
publicintCentreId{get;set;}
21
21
22
-
[Required(ErrorMessage="Enter a first name")]
23
22
[MaxLength(250,ErrorMessage="First name must be 250 characters or fewer")]
24
23
publicstring?FirstName{get;set;}
25
24
26
-
[Required(ErrorMessage="Enter a last name")]
27
25
[MaxLength(250,ErrorMessage="Last name must be 250 characters or fewer")]
28
26
publicstring?LastName{get;set;}
29
27
30
-
[Required(ErrorMessage="Enter an email")]
31
28
[MaxLength(250,ErrorMessage="Email must be 250 characters or fewer")]
32
29
[EmailAddress(ErrorMessage="Enter an email in the correct format, like [email protected]")]
33
30
[NoWhitespace(ErrorMessage="Email must not contain any whitespace characters")]
0 commit comments