Ignore:
Timestamp:
07/27/20 23:36:14 (4 years ago)
Author:
Mile Jankuloski <mile.jankuloski@…>
Branches:
master
Children:
e42f61a
Parents:
d2e69be
Message:

Handled REST API calls, searchbars and paginators implemented, overall frontend improvment

Location:
Farmatiko/ClientApp/src/app/models
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Farmatiko/ClientApp/src/app/models/HealthFacilities.ts

    rd2e69be ref1219a  
    11export 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;
    811}
  • Farmatiko/ClientApp/src/app/models/Pandemic.ts

    rd2e69be ref1219a  
    11export class Pandemic {
    22  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;
    1010}
Note: See TracChangeset for help on using the changeset viewer.