KalkulatorISP-31rrrrr/source/repos/WinFormsApp5/Models/User.cs
2025-11-11 14:18:33 +04:00

14 lines
258 B
C#

using System;
using System.Collections.Generic;
namespace WinFormsApp5.Models;
public partial class User
{
public int IdUsers { get; set; }
public string UserLogin { get; set; } = null!;
public string UserPassword { get; set; } = null!;
}