continuity/Server/DB/Documents/Account.cs

23 lines
658 B
C#
Raw Normal View History

2023-10-12 09:15:34 +02:00
namespace Server.DB.Documents;
2023-08-10 10:47:35 +02:00
2023-08-14 13:49:27 +02:00
public class Account
2023-08-10 10:47:35 +02:00
{
public Account(string username, byte[] password, string email, byte permissionLevel, byte[] salt)
2023-08-10 10:47:35 +02:00
{
2023-08-11 11:31:30 +02:00
this.Username = username;
this.Password = password;
this.Email = email;
this.PermissionLevel = permissionLevel;
this.Salt = salt;
2023-08-10 10:47:35 +02:00
}
2023-08-14 21:30:32 +02:00
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; }
2023-08-14 22:30:35 +02:00
public ICollection<Character> Characters { get; } = new List<Character>();
2023-08-11 11:31:30 +02:00
}