source: resTools_backend/backend/Entities/User.cs@ 7a983b0

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

move files

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