sledgemapper/Sledgemapper.Api/Core/Entities/User.cs
Michele Scandura 7e3e645fc9
All checks were successful
continuous-integration/drone/push Build is passing
fixes and cleanup
2021-09-21 11:09:26 +01:00

18 lines
No EOL
595 B
C#

using System.Collections.Generic;
using Microsoft.AspNetCore.Identity;
namespace Sledgemapper.Api.Core.Entities
{
public class User : IdentityUser
{
// public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
// public string Email { get; set; }
// public string Username { get; set; }
public string Initials { get; set; }
// public byte[] PasswordHash { get; set; }
public byte[] PasswordSalt { get; set; }
public ICollection<Campaign> Campaigns { get; set; }
}
}