MyBookmark/Modules.User.Application/Models/Account.cs
THE_KONDRAT 7b16d72329 ui and login
mongo => postgres
2024-11-03 16:08:39 +03:00

9 lines
226 B
C#

namespace Modules.User.Application.Models;
public class Account
{
public Guid Id { get; set; } = default!;
public string Email { get; set; } = default!;
public string HashedPassword { get; set; } = default!;
}