You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

23 lines
450 B

//
// Comment.swift
// GMERemittance
//
// Created by Sujal on 4/2/18.
// Copyright © 2018 Gobal Money Express Co. Ltd. All rights reserved.
//
import Foundation
struct Comment : Decodable {
var commentId: String!
var feedId: String!
var userId: String!
var userName: String!
var userDpUrl: String?
var userComment: String!
var updatedDate: String?
var createdDate: String!
var agoDate: String!
}