-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComment.swift
More file actions
35 lines (24 loc) · 739 Bytes
/
Comment.swift
File metadata and controls
35 lines (24 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//
// Comment.swift
// TIK TIK
//
// Created by Junaid Kamoka on 02/05/2019.
// Copyright © 2019 Junaid Kamoka. All rights reserved.
//
import UIKit
class Comment: NSObject {
var comments:String! = ""
var first_name:String! = ""
var last_name:String! = ""
var profile_pic:String! = ""
var v_id:String! = ""
var c_time:String! = ""
init(comments: String!, first_name: String!, last_name: String!,profile_pic: String!, v_id: String!, c_time: String!) {
self.comments = comments
self.first_name = first_name
self.last_name = last_name
self.profile_pic = profile_pic
self.v_id = v_id
self.c_time = c_time
}
}