Files
raspberry/iOS/Wallet/Sources/Account/Model/AccountModelContact.swift
2022-12-06 23:00:21 +03:00

17 lines
332 B
Swift

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