mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-04-06 06:44:58 +00:00
18 lines
262 B
Swift
18 lines
262 B
Swift
![]() |
//
|
||
|
// Countries.swift
|
||
|
// CovidSafe
|
||
|
//
|
||
|
// Copyright © 2020 Joel Kek. All rights reserved.
|
||
|
//
|
||
|
|
||
|
struct CountriesData {
|
||
|
|
||
|
static let countryArray = ["Australia"]
|
||
|
|
||
|
static let countryCodes =
|
||
|
[
|
||
|
"Australia": "+61"
|
||
|
]
|
||
|
|
||
|
}
|