Changeset 46c298d for Farmatiko/ClientApp/src/app/models
- Timestamp:
- 07/22/20 13:08:15 (4 years ago)
- Branches:
- master
- Children:
- ca0dae7
- Parents:
- 1f041f6
- Location:
- Farmatiko/ClientApp/src/app/models
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
Farmatiko/ClientApp/src/app/models/HealthFacilities.ts
r1f041f6 r46c298d 1 1 export class HealthFacilities { 2 3 4 5 6 7 2 Name: string; 3 Municipality: string; 4 Address: string; 5 Type: string; 6 Email: string; 7 Phone: string; 8 8 } -
Farmatiko/ClientApp/src/app/models/HealthcareWorkers.ts
r1f041f6 r46c298d 2 2 3 3 export class HealthcareWorkers { 4 5 6 7 4 Name: string; 5 Branch: Date; 6 Facility: HealthFacilities; 7 Title: string; 8 8 } -
Farmatiko/ClientApp/src/app/models/MedicineList.ts
r1f041f6 r46c298d 2 2 3 3 export class MedicineList { 4 5 4 Medicines: Medicine[]; 5 HasMedicine: boolean[]; 6 6 } -
Farmatiko/ClientApp/src/app/models/Pandemic.ts
r1f041f6 r46c298d 1 1 export class Pandemic { 2 3 4 5 6 7 8 9 2 Name: string; 3 TotalMK: BigInt; 4 ActiveMK: BigInt; 5 DeathsMK: BigInt; 6 NewMK: BigInt; 7 TotalGlobal: BigInt; 8 DeathsGlobal: BigInt; 9 ActiveGlobal: BigInt; 10 10 } -
Farmatiko/ClientApp/src/app/models/Pharmacy.ts
r1f041f6 r46c298d 1 1 export class Pharmacy { 2 3 4 5 2 Name: string; 3 Location: string; 4 Address: string; 5 WorkAllTime: boolean; 6 6 } -
Farmatiko/ClientApp/src/app/models/PharmacyHead.ts
r1f041f6 r46c298d 3 3 4 4 export class PharmacyHead { 5 6 7 8 9 5 PharmacyMedicines: MedicineList; 6 Pharmacy: Pharmacy[]; 7 Email: string; 8 Passwd: string; 9 Name: string; 10 10 }
Note:
See TracChangeset
for help on using the changeset viewer.