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