models #3

Merged
KerelOlivier merged 2 commits from models into dev 2 years ago
  1. 15
      Models/User.cs

15
Models/User.cs

@ -0,0 +1,15 @@ @@ -0,0 +1,15 @@
using MongoDB.Bson;
using MongoDB.Bson.Serialization.Attributes;
namespace backend.Models;
public class User
{
[BsonId]
[BsonRepresentation(BsonType.ObjectId)]
public string Id { get; set; }
public string Name { get; set; }
public string Email { get; set; }
public string Password { get; set; } //Bcrypt encrypted
public int Role { get; set; } //0 = user, 1 = author, 2 = admin
}
Loading…
Cancel
Save