13 lines
353 B
C#
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; }
|
|
}
|
|
} |