Last change
on this file since 1454207 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 | |
---|
1 | using System.Collections.Generic;
|
---|
2 | using System.ComponentModel.DataAnnotations;
|
---|
3 | using FarmatikoData.Base;
|
---|
4 |
|
---|
5 | namespace 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.