Add Transactions & Accounts

This commit is contained in:
vbodinaud
2021-03-31 15:20:19 +02:00
parent 33d508fb44
commit fcf488b065
3 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
//
// File.swift
//
//
// Created by Victor BODINAUD on 31/03/2021.
//
import Foundation
class Account {
var id: String
var balance: Int
}

View File

@@ -0,0 +1,15 @@
//
// File.swift
//
//
// Created by Victor BODINAUD on 31/03/2021.
//
import Foundation
class Transaction {
var sender: String
var receiver: String
var amount: Int
var type: String
}