14 lines
248 B
C#
14 lines
248 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace WinFormsApp3.Models;
|
|
|
|
public partial class User
|
|
{
|
|
public int Iduser { get; set; }
|
|
|
|
public string Role { get; set; } = null!;
|
|
|
|
public string Password { get; set; } = null!;
|
|
}
|