21 lines
432 B
Swift
21 lines
432 B
Swift
//
|
|
// Contact.swift
|
|
// Zashi
|
|
//
|
|
// Created by Lukáš Korba on 05-28-2024.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public struct Contact: Equatable, Codable, Identifiable, Hashable {
|
|
public let id: String
|
|
public var name: String
|
|
public var lastUpdated: Date
|
|
|
|
public init(address: String, name: String, lastUpdated: Date = Date()) {
|
|
self.id = address
|
|
self.name = name
|
|
self.lastUpdated = lastUpdated
|
|
}
|
|
}
|