Last change
on this file since dae4cde was e0cdea2, checked in by Dimitar Slezenkovski <dslezenkovski@…>, 4 years ago |
Fix all bugs
|
-
Property mode
set to
100644
|
File size:
544 bytes
|
Line | |
---|
1 | using FarmatikoData.Base;
|
---|
2 | using Newtonsoft.Json;
|
---|
3 | using System;
|
---|
4 | using System.Collections.Generic;
|
---|
5 | using System.ComponentModel.DataAnnotations;
|
---|
6 | using System.Text;
|
---|
7 | using System.Text.Json.Serialization;
|
---|
8 |
|
---|
9 | namespace FarmatikoData.Models
|
---|
10 | {
|
---|
11 | public class RequestPharmacyHead : BaseEntity
|
---|
12 | {
|
---|
13 | public RequestPharmacyHead()
|
---|
14 | {
|
---|
15 | }
|
---|
16 |
|
---|
17 | [JsonProperty("PharmacyHead")]
|
---|
18 | public PharmacyHead Head { get; set; }
|
---|
19 |
|
---|
20 | [JsonProperty("Pharmacy")]
|
---|
21 | public Pharmacy Pharmacy { get; set; }
|
---|
22 |
|
---|
23 | }
|
---|
24 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.