Files
raspberry/iOS/Wallet/Sources/Account/Model/AccountModelContact.swift
2022-05-27 20:21:01 +03:00

21 lines
417 B
Swift

//
// AccountModelContact.swift
// PayCash
//
// Created by Igor on 04.02.2021.
// Copyright © 2021 AM. All rights reserved.
//
import UIKit
extension Account.Model {
struct Contact {
let account: String
var rating = 0
}
}
extension Account.Model.Contact: CommonMenuMappable {
func toMenu() -> Common.Model.Menu { .menu(uuid: account, image: .account(account), title: account) }
}