mirror of
https://github.com/ryzij/AMessanger-Server.git
synced 2026-09-18 19:25:38 +00:00
8 lines
264 B
C#
8 lines
264 B
C#
namespace AMessanger.DataAccess.Entities;
|
|
|
|
public class UserEntity(Guid id, string name, string hashedPassword)
|
|
{
|
|
public Guid Id { get; set; } = id;
|
|
public string Name { get; set; } = name;
|
|
public string HashedPassword { get; set; } = hashedPassword;
|
|
} |