continuity/Server/DB/Documents/Account.cs
Timothy Schenk f802dcf2a3
All checks were successful
Test if Server can be built / build-server (push) Successful in 24s
chore: reformat & cleanup
2023-08-14 21:30:32 +02:00

21 lines
582 B
C#

namespace Server.DB.Documents;
public class Account
{
public Account(string username, byte[] password, string email, byte permissionLevel, byte[] salt)
{
this.Username = username;
this.Password = password;
this.Email = email;
this.PermissionLevel = permissionLevel;
this.Salt = salt;
}
public Guid Id { get; set; }
public string Username { get; set; }
public byte[] Password { get; set; }
public string Email { get; set; }
public byte PermissionLevel { get; set; }
public byte[] Salt { get; set; }
}