source: FarmatikoData/Models/RequestPharmacyHead.cs@ f554983

Last change on this file since f554983 was e0cdea2, checked in by Dimitar Slezenkovski <dslezenkovski@…>, 3 years ago

Fix all bugs

  • Property mode set to 100644
File size: 544 bytes
Line 
1using FarmatikoData.Base;
2using Newtonsoft.Json;
3using System;
4using System.Collections.Generic;
5using System.ComponentModel.DataAnnotations;
6using System.Text;
7using System.Text.Json.Serialization;
8
9namespace 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.