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:
429 bytes
|
Line | |
---|
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.