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
string.IsNullOrWhiteSpace(value)?newSystem.ComponentModel.DataAnnotations.ValidationResult("Note name cannot be null or whitespace"):
value.Length>50?newSystem.ComponentModel.DataAnnotations.ValidationResult("Note name must be 50 characters or less"):
value.Length<1?newSystem.ComponentModel.DataAnnotations.ValidationResult("Note name must be at least 1 character"):
!NoteNamePattern().IsMatch(value)?newSystem.ComponentModel.DataAnnotations.ValidationResult("Note name must contain only uppercase letters, numbers, and underscores"):