17 lines
553 B
Go
17 lines
553 B
Go
|
|
package response
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type FeedbacksResponse struct {
|
||
|
|
ID uint `json:"id"`
|
||
|
|
Message string `json:"message"`
|
||
|
|
CommentFromName string `json:"commentFromName"`
|
||
|
|
CommentFromEmail string `json:"commentFromEmail"`
|
||
|
|
StatusId int `json:"statusId"`
|
||
|
|
ApprovedAt *time.Time `json:"approvedAt"`
|
||
|
|
ReplyMessage *string `json:"replyMessage"`
|
||
|
|
IsActive bool `json:"isActive"`
|
||
|
|
CreatedAt time.Time `json:"createdAt"`
|
||
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
||
|
|
}
|