14 lines
299 B
C#
14 lines
299 B
C#
namespace DMS.Core.Models;
|
|
|
|
public class User
|
|
{
|
|
|
|
public int Id { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string Password { get; set; }
|
|
public string Email { get; set; }
|
|
public string PhoneNumber { get; set; }
|
|
public string Address { get; set; }
|
|
} |