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