Changeset ef1219a for Farmatiko/ClientApp/src/app/models
- Timestamp:
- 07/27/20 23:36:14 (4 years ago)
- Branches:
- master
- Children:
- e42f61a
- Parents:
- d2e69be
- Location:
- Farmatiko/ClientApp/src/app/models
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Farmatiko/ClientApp/src/app/models/HealthFacilities.ts
rd2e69be ref1219a 1 1 export class HealthFacilities { 2 Name: string; 3 Municipality: string; 4 Address: string; 5 Type: string; 6 Email: string; 7 Phone: string; 2 address: string; 3 createdOn: string; 4 deletedOn: string; 5 email: string; 6 id: number; 7 municipality: string; 8 name: string; 9 phone: string; 10 type: string; 8 11 } -
Farmatiko/ClientApp/src/app/models/Pandemic.ts
rd2e69be ref1219a 1 1 export class Pandemic { 2 2 Name: string; 3 TotalMK: BigInteger;4 ActiveMK: BigInteger;5 DeathsMK: BigInteger;6 NewMK: BigInteger;7 TotalGlobal: BigInteger;8 DeathsGlobal: BigInteger;9 ActiveGlobal: BigInteger;3 TotalMK: number; 4 ActiveMK: number; 5 DeathsMK: number; 6 NewMK: number; 7 TotalGlobal: number; 8 DeathsGlobal: number; 9 ActiveGlobal: number; 10 10 }
Note:
See TracChangeset
for help on using the changeset viewer.