Compare commits

..

No commits in common. 'da51ce88d344cdea18e547f5e5175dfd67937813' and 'e3ccece9692fb3a7b43eda75798d4d5ab6ee0536' have entirely different histories.

  1. 15
      Models/User.cs

15
Models/User.cs

@ -1,15 +0,0 @@
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