17 lines
332 B
Swift
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) }
|
|
}
|