Files
ShopSolution-backend/Webshop.Domain/Entities/ApplicationUser.cs
Tizian.Breuch 9e298a0458 aufrüumen
2025-07-25 15:46:31 +02:00

13 lines
353 B
C#

using Microsoft.AspNetCore.Identity;
using System;
using System.Collections.Generic;
namespace Webshop.Domain.Entities
{
public class ApplicationUser : IdentityUser
{
public DateTimeOffset CreatedDate { get; set; }
public DateTimeOffset? LastActive { get; set; }
public virtual Customer Customer { get; set; }
}
}