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

18 lines
350 B
C#

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