source: FarmatikoData/Models/User.cs@ 8b13eb2

Last change on this file since 8b13eb2 was d23bf72, checked in by DimitarSlezenkovski <dslezenkovski@…>, 3 years ago

Add SystemService, Auth, fix a lil bugs :)

  • Property mode set to 100644
File size: 439 bytes
Line 
1using FarmatikoData.Base;
2using System;
3using System.Collections.Generic;
4using System.Text;
5
6namespace FarmatikoData.Models
7{
8 public class User : BaseEntity
9 {
10 public enum Role
11 {
12 Admin,
13 PharmacyHead
14 }
15 public string Name { get; set; }
16 public string Email { get; set; }
17 public string Password { get; set; }
18 public Role UserRole { get; set; }
19 }
20}
Note: See TracBrowser for help on using the repository browser.