using System; using System.Collections.Generic; namespace WinFormsApp4.Models; public partial class User { public int UserId { get; set; } public string Username { get; set; } = null!; public string Email { get; set; } = null!; public string Password { get; set; } = null!; public DateOnly DateRegistered { get; set; } }