qudoco-be/app/module/article_approvals/response/article_approvals.response.go

14 lines
393 B
Go
Raw Normal View History

2026-02-24 09:37:19 +00:00
package response
import "time"
type ArticleApprovalsResponse struct {
ID uint `json:"id"`
ArticleId uint `json:"articleId"`
ApprovalBy uint `json:"approvalBy"`
StatusId int `json:"statusId"`
Message string `json:"message"`
ApprovalAtLevel *int `json:"approvalAtLevel"`
CreatedAt time.Time `json:"createdAt"`
}