source: FarmatikoData/DTOs/PharmacyDTO.cs@ ac51326

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

Update searches, fix bugs

  • Property mode set to 100644
File size: 595 bytes
Line 
1using Newtonsoft.Json;
2using System;
3using System.Collections.Generic;
4using System.Text;
5
6namespace FarmatikoData.DTOs
7{
8 public class PharmacyDTO
9 {
10 public PharmacyDTO() { }
11 [JsonProperty("name")]
12 public string Name { get; set; }
13 [JsonProperty("Location")]
14 public string Location { get; set; }
15 [JsonProperty("address")]
16 public string Address { get; set; }
17 [JsonProperty("workalltime")]
18 public bool WorkAllTime { get; set; }
19 [JsonProperty("headName")]
20 public string HeadName { get; set; }
21 }
22}
Note: See TracBrowser for help on using the repository browser.