// // EQNBaseMapRepresentable.swift // Earthquake Network // // Created by Andrea Busi on 14/03/21. // Copyright © 2021 Earthquake Network. All rights reserved. // import Foundation protocol EQNBaseMapRepresentable { var date: Date { get } } extension EQNPastquakes: EQNBaseMapRepresentable { } extension EQNSegnalazione: EQNBaseMapRepresentable { }