// // Country.swift // Lockdown // // Created by Pavel Vilbik on 27.06.23. // Copyright © 2023 Confirmed Inc. All rights reserved. // import Foundation struct Country: Equatable { let title: String let emojiSymbol: String? }