blockchainethereumblockchain-walleterc20erc721walletxdaidappdecentralizederc1155erc875iosswifttokens
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
623 B
31 lines
623 B
//
|
|
// TokenRedemptionViewModel.swift
|
|
// Alpha-Wallet
|
|
//
|
|
// Created by Oguzhan Gungor on 3/6/18.
|
|
// Copyright © 2018 Alpha-Wallet. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import UIKit
|
|
|
|
struct TokenRedemptionViewModel {
|
|
var token: TokenObject
|
|
var TokenHolder: TokenHolder
|
|
|
|
var headerTitle: String {
|
|
return R.string.localizable.aWalletTokenTokenRedeemShowQRCodeTitle()
|
|
}
|
|
|
|
var headerColor: UIColor {
|
|
return Colors.appWhite
|
|
}
|
|
|
|
var headerFont: UIFont {
|
|
return Fonts.light(size: 25)!
|
|
}
|
|
|
|
var backgroundColor: UIColor {
|
|
return Colors.appBackground
|
|
}
|
|
}
|
|
|