Changeset e0cdea2 for FarmatikoData/Models
- Timestamp:
- 02/08/21 16:39:25 (4 years ago)
- Branches:
- master
- Children:
- 8eb1e21, dae4cde
- Parents:
- 0a694bb
- Location:
- FarmatikoData/Models
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
FarmatikoData/Models/Pharmacy.cs
r0a694bb re0cdea2 31 31 this.WorkAllTime = WorkAllTime; 32 32 } 33 public int PheadId { get; set; }33 public int? PheadId { get; set; } 34 34 public PharmacyHead PharmacyHead { get; set; } 35 35 } -
FarmatikoData/Models/RequestPharmacyHead.cs
r0a694bb re0cdea2 1 1 using FarmatikoData.Base; 2 using Newtonsoft.Json; 2 3 using System; 3 4 using System.Collections.Generic; … … 13 14 { 14 15 } 15 [Required]16 [JsonProperty Name("PharmacyHead")]16 17 [JsonProperty("PharmacyHead")] 17 18 public PharmacyHead Head { get; set; } 18 [Required]19 [JsonProperty Name("Pharmacy")]19 20 [JsonProperty("Pharmacy")] 20 21 public Pharmacy Pharmacy { get; set; } 21 22
Note:
See TracChangeset
for help on using the changeset viewer.