15 lines
377 B
C#
15 lines
377 B
C#
using System;
|
|
|
|
namespace IdentityServer.Domain.Entities
|
|
{
|
|
public class AppUser
|
|
{
|
|
public int UserId { get; set; }
|
|
public string UserName { get; set; }
|
|
public string Password { get; set; }
|
|
public string Email { get; set; }
|
|
public string ProfilePictureUrl { get; set; }
|
|
public DateTime CreationDate { get; set; }
|
|
}
|
|
}
|