aboutsummaryrefslogtreecommitdiff
path: root/models
diff options
context:
space:
mode:
authorFridon <[email protected]>2022-06-20 12:45:08 +0400
committerFridon <[email protected]>2022-06-20 12:45:08 +0400
commitaf45de59390407eff25296edf8f522de6881ecbd (patch)
tree5ab168ae020b73312ba698a9aea2ac38e3c5ea5d /models
parent522ab8c4358c4c1229e4987ea69455b93b1a5b60 (diff)
downloadcountryfetch-af45de59390407eff25296edf8f522de6881ecbd.tar.xz
countryfetch-af45de59390407eff25296edf8f522de6881ecbd.zip
refactor to OOP
Diffstat (limited to 'models')
-rw-r--r--models/country.model.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/models/country.model.ts b/models/country.model.ts
index 7fa8de0..53e68c5 100644
--- a/models/country.model.ts
+++ b/models/country.model.ts
@@ -15,4 +15,5 @@ export interface Country {
flag: string;
population: number;
languages: Record<LangAbbr, string>;
+ region: string;
}