mirror of
https://github.com/oonyeje/Get-Hip.git
synced 2025-12-25 03:37:40 +00:00
20 lines
329 B
Swift
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
|
|
}
|
|
}
|