exam/WinFormsApp3/Models/User.cs
2026-05-15 12:01:42 +04:00

14 lines
248 B
C#

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!;
}