source: FarmatikoData/Models/PharmacyHead.cs@ ad60966

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

Add SystemService, Auth, fix a lil bugs :)

  • Property mode set to 100644
File size: 556 bytes
RevLine 
[1454207]1using System.Collections.Generic;
[5d02859]2using System.ComponentModel.DataAnnotations;
[a8ccc2c]3using FarmatikoData.Base;
[30a465f]4
5namespace FarmatikoData.Models
6{
[a8ccc2c]7 public class PharmacyHead : BaseEntity
[30a465f]8 {
[5d02859]9 public PharmacyHead()
10 {
11 }
12 [Required]
[30a465f]13 public string Email { get; set; }
[5d02859]14 [Required]
[30a465f]15 public string Name { get; set; }
[5d02859]16 [Required]
[30a465f]17 public string Password { get; set; }
[d23bf72]18 public List<MedicineList> MedicineLists { get; set; }
19 public List<Pharmacy> PharmaciesList { get; set; }
[5d02859]20
[30a465f]21 }
22}
Note: See TracBrowser for help on using the repository browser.