source: resTools_backend/backend/Entities/User.cs@ 899b19d

Last change on this file since 899b19d was 899b19d, checked in by Danilo <danilo.najkov@…>, 2 years ago

reviews full feature

  • Property mode set to 100644
File size: 278 bytes
Line 
1using Newtonsoft.Json;
2
3namespace backend.Entities;
4
5public class User
6{
7 public int Id { get; set; }
8 public string Email { get; set; }
9 public string Password { get; set; }
10 public bool IsAdmin { get; set; }
11 public virtual Restaurant Restaurant { get; set; }
12}
Note: See TracBrowser for help on using the repository browser.