Last change
on this file since afefe75 was 1db5673, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago |
Fix bugs, add some more
|
-
Property mode
set to
100644
|
File size:
573 bytes
|
Rev | Line | |
---|
[1db5673] | 1 | using FarmatikoData.Base;
|
---|
| 2 | using System;
|
---|
| 3 | using System.Collections.Generic;
|
---|
| 4 | using System.Text;
|
---|
| 5 | using System.Text.Json.Serialization;
|
---|
| 6 |
|
---|
| 7 | namespace FarmatikoData.Models
|
---|
| 8 | {
|
---|
| 9 | public class PharmacyHeadMedicine : BaseEntity
|
---|
| 10 | {
|
---|
| 11 | //[JsonPropertyName("PheadId")]
|
---|
| 12 | public int PheadId { get; set; }
|
---|
| 13 | //[JsonPropertyName("Head")]
|
---|
| 14 | public PharmacyHead Head { get; set; }
|
---|
| 15 | //[JsonPropertyName("MedicineId")]
|
---|
| 16 | public int MedicineId { get; set; }
|
---|
| 17 | //[JsonPropertyName("Medicine")]
|
---|
| 18 | public Medicine Medicine { get; set; }
|
---|
| 19 | }
|
---|
| 20 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.