blob: 8b90930503e449a72dcfd9e08030c56259ef27ff [file] [log] [blame]
// Copyright 2016 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
import Foundation
// All of this is trash to be replaced by syncbase model
class Person {
var name: String = ""
var imageName: String = ""
var email: String = ""
convenience init(name: String, imageName: String) {
self.init()
self.name = name
self.imageName = imageName
}
}