tuitio/IdentityServer.Domain/Entities/AppUser.cs

15 lines
377 B
C#
Raw Normal View History

2020-12-20 00:18:53 +02:00
using System;
namespace IdentityServer.Domain.Entities
{
public class AppUser
{
public int UserId { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
2021-11-10 15:14:58 +02:00
public string Email { get; set; }
public string ProfilePictureUrl { get; set; }
2020-12-20 00:18:53 +02:00
public DateTime CreationDate { get; set; }
}
}