source: FarmatikoData/Models/PharmacyHead.cs@ 1f4846d

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

Change structure, Add repo, services & controllers

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