Base template solution with tests, authentication, support for admin accounts, prepared tests for auth, basic error handling system used in auth.

This commit is contained in:
Matěj Kubíček
2026-04-18 17:37:38 +02:00
parent 5a2e76fefd
commit f50bec167f
101 changed files with 83814 additions and 0 deletions
@@ -0,0 +1,28 @@
using System.ComponentModel.DataAnnotations;
namespace TemplateWeb.Models.DbModels;
public class UserModel
{
[Key]
public int Id { get; set; }
[Required]
[MaxLength(50)]
[MinLength(3)]
public string UserName { get; set; }
[Required]
[DataType(DataType.EmailAddress)]
public string Email { get; set; }
[Required]
[MinLength(5)]
[DataType(DataType.Password)]
public string Password { get; set; }
public UserRole Role { get; set; } = UserRole.User;
}
public enum UserRole
{
User,
Admin
}