source: backend/Entities/User.cs@ b66b3ac

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

Add project files.

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