changed git call from https to git readonly
[atutor.git] / mods / atsocial_iphone_app / Classes / Contact.h
1 //
2 //  Contact.h
3 //  ATutor
4 //
5 //  Created by Quang Anh Do on 03/07/2010.
6 //  Copyright 2010 Quang Anh Do. All rights reserved.
7 //
8
9 #import <Foundation/Foundation.h>
10
11
12 @interface Contact : NSObject {
13         int identifier;
14         NSString *displayName;
15 }
16
17 @property int identifier;
18 @property (nonatomic, retain) NSString *displayName;
19
20 + (Contact *)contactWithDictionary:(NSDictionary *)dictionary;
21
22 @end