firstCommit
This commit is contained in:
31
RentACar/Data/Entities/User.cs
Normal file
31
RentACar/Data/Entities/User.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Data.Entities
|
||||
{
|
||||
public class User
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string Username { get; set; }
|
||||
|
||||
public string Password { get; set; }
|
||||
|
||||
public string FirstName { get; set; }
|
||||
|
||||
public string LastName { get; set; }
|
||||
|
||||
public int PersonalNumber { get; set; }
|
||||
|
||||
public int PhoneNumber { get; set; }
|
||||
|
||||
public string Email { get; set; }
|
||||
|
||||
public int RoleId { get; set; }
|
||||
|
||||
public Role Role { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user