20 lines
365 B
Swift
20 lines
365 B
Swift
//
|
|
// 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 { }
|