NikivorovaMV/Models/Authorization.cs

14 lines
254 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
namespace NikiforovaMV.Models;
public partial class Authorization
{
public int Id { get; set; }
public string Login { get; set; } = null!;
public string Password { get; set; } = null!;
}