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:
549 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;
|
---|
[1db5673] | 6 | using System.Text.Json.Serialization;
|
---|
[1454207] | 7 |
|
---|
| 8 | namespace FarmatikoData.Models
|
---|
| 9 | {
|
---|
| 10 | public class RequestPharmacyHead : BaseEntity
|
---|
| 11 | {
|
---|
| 12 | public RequestPharmacyHead()
|
---|
| 13 | {
|
---|
| 14 | }
|
---|
| 15 | [Required]
|
---|
[1db5673] | 16 | [JsonPropertyName("PharmacyHead")]
|
---|
[1454207] | 17 | public PharmacyHead Head { get; set; }
|
---|
| 18 | [Required]
|
---|
[1db5673] | 19 | [JsonPropertyName("Pharmacy")]
|
---|
[1454207] | 20 | public Pharmacy Pharmacy { get; set; }
|
---|
| 21 |
|
---|
| 22 | }
|
---|
| 23 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.