using System; using System.Collections.Generic; namespace WinFormsApp3.Models; public partial class User { public int Iduser { get; set; } public string Role { get; set; } = null!; public string Password { get; set; } = null!; }