ASP.NET Core Identity integration

This commit is contained in:
Dimitar Todorov
2022-03-28 17:35:40 +03:00
parent 52880aa71c
commit 436ecf41e6
11 changed files with 1233 additions and 125 deletions

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Data.Entities
{
public class Rents
{
public int Id { get; set; }
public virtual Car Car { get; set; }
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
public virtual User User { get; set; }
}
}