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; } } }