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
|
Rev | Line | |
---|
[afefe75] | 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; }
|
---|
[0a694bb] | 13 | [JsonProperty("location")]
|
---|
[afefe75] | 14 | public string Location { get; set; }
|
---|
| 15 | [JsonProperty("address")]
|
---|
| 16 | public string Address { get; set; }
|
---|
[0a694bb] | 17 | [JsonProperty("workAllTime")]
|
---|
[afefe75] | 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.