Last change
on this file since dae4cde was 0a694bb, checked in by Dimitar Slezenkovski <dslezenkovski@…>, 4 years ago |
Fix create new user bug.
|
-
Property mode
set to
100644
|
File size:
595 bytes
|
Line | |
---|
1 | using Newtonsoft.Json;
|
---|
2 | using System;
|
---|
3 | using System.Collections.Generic;
|
---|
4 | using System.Text;
|
---|
5 |
|
---|
6 | namespace 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.