Get-Hip/GetHip/FriendData.swift
2016-01-28 05:44:20 -05:00

20 lines
329 B
Swift

//
// FriendData.swift
// GetHip
//
// Created by Okechi on 1/13/16.
// Copyright (c) 2016 Kroleo. All rights reserved.
//
import Foundation
class FriendData {
var displayName: String!
var profileImg: UIImage!
init(display: String){
self.displayName = display
self.profileImg = nil
}
}