User.cs 294 B

12345678910111213
  1. using System.ComponentModel.DataAnnotations;
  2. namespace BlazorEditForms.Model;
  3. public class User
  4. {
  5. [Required]
  6. [EmailAddress]
  7. public string UserId { get; set; } = string.Empty;
  8. [Required]
  9. [MinLength(3)]
  10. public string Code { get; set; } = string.Empty;
  11. }