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

14 lines
393 B
Go
Raw Normal View History

2025-02-17 15:32:01 +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"`
2025-02-17 22:15:57 +00:00
ApprovalAtLevel *int `json:"approvalAtLevel"`
2025-02-17 15:32:01 +00:00
CreatedAt time.Time `json:"createdAt"`
}