14 lines
258 B
C#
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!;
|
|
}
|