Files
rent-a-car/RentACar/Data/Models/User.cs
2022-03-28 17:35:40 +03:00

19 lines
386 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Identity;
namespace Data.Entities
{
public class User : IdentityUser<string>
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string PersonalNumber { get; set; }
}
}