summaryrefslogtreecommitdiff
path: root/Juick/Model/Chat.h
diff options
context:
space:
mode:
Diffstat (limited to 'Juick/Model/Chat.h')
-rw-r--r--Juick/Model/Chat.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/Juick/Model/Chat.h b/Juick/Model/Chat.h
new file mode 100644
index 0000000..42647b0
--- /dev/null
+++ b/Juick/Model/Chat.h
@@ -0,0 +1,17 @@
+//
+// Chat.h
+// Juick
+//
+// Created by Vitaly Takmazov on 04/03/2018.
+// Copyright © 2018 com.juick. All rights reserved.
+//
+
+#import <Foundation/Foundation.h>
+#import "User.h"
+
+@interface Chat : NSObject
+
+@property NSNumber *uid;
+@property NSString *uname;
+@property NSNumber *unreadCount;
+@end