Module project, commit, submission
All checks were successful
Build and Release / release (push) Successful in 1m15s

This commit is contained in:
2026-04-26 16:31:03 +07:00
parent ac90236022
commit 6918a100fc
60 changed files with 5957 additions and 1020 deletions

View File

@@ -0,0 +1,18 @@
package response
import "time"
type SubmissionResponse struct {
ID string `json:"id"`
ProjectID string `json:"project_id"`
CommitID string `json:"commit_id"`
UserID string `json:"user_id"`
CreatedAt *time.Time `json:"created_at"`
Status string `json:"status"`
ReviewedBy *string `json:"reviewed_by,omitempty"`
ReviewedAt *time.Time `json:"reviewed_at,omitempty"`
ReviewNote *string `json:"review_note,omitempty"`
Content *string `json:"content,omitempty"`
User *UserSimpleResponse `json:"user"`
Reviewer *UserSimpleResponse `json:"reviewer,omitempty"`
}