added authentication.

This commit is contained in:
ivancheahhh
2024-01-04 15:41:43 -07:00
parent 3306fefd4d
commit bb82f1ab72
9 changed files with 288 additions and 8 deletions

View File

@@ -0,0 +1,9 @@
namespace CarCareTracker.Models
{
public class AuthCookie
{
public int Id { get; set; }
public string UserName { get; set; }
public DateTime ExpiresOn { get; set; }
}
}