You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
431 B
15 lines
431 B
namespace CraftSharp.Models
|
|
{
|
|
public class AppUser
|
|
{
|
|
public int Id { get; set; }
|
|
public int numberOfKeys { get; set; } = 10;
|
|
|
|
public string Password { get; set; }
|
|
public List<UserRoles> Roles { get; set; } = new List<UserRoles>() { UserRoles.User };
|
|
public string UserName { get; set; }
|
|
public List<Item> inventory { get; set; } = new List<Item>();
|
|
|
|
}
|
|
}
|