Last change
on this file since afc9a9a was 1454207, checked in by DimitarSlezenkovski <dslezenkovski@…>, 5 years ago |
Change structure, Add repo, services & controllers
|
-
Property mode
set to
100644
|
File size:
429 bytes
|
Rev | Line | |
---|
[1454207] | 1 | using FarmatikoData.Base;
|
---|
| 2 | using System;
|
---|
| 3 | using System.Collections.Generic;
|
---|
| 4 | using System.ComponentModel.DataAnnotations;
|
---|
| 5 | using System.Text;
|
---|
| 6 |
|
---|
| 7 | namespace FarmatikoData.Models
|
---|
| 8 | {
|
---|
| 9 | public class RequestPharmacyHead : BaseEntity
|
---|
| 10 | {
|
---|
| 11 | public RequestPharmacyHead()
|
---|
| 12 | {
|
---|
| 13 | }
|
---|
| 14 | [Required]
|
---|
| 15 | public PharmacyHead Head { get; set; }
|
---|
| 16 | [Required]
|
---|
| 17 | public Pharmacy Pharmacy { get; set; }
|
---|
| 18 |
|
---|
| 19 | }
|
---|
| 20 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.