13 lines
281 B
C#
13 lines
281 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 DateTime CreationDate { get; set; }
|
|||
|
}
|
|||
|
}
|