migrate from github

This commit is contained in:
2026-07-15 22:42:31 +08:00
commit 3ad559f05e
262 changed files with 21637 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
package dto
import "time"
type AttachmentResponse struct {
ExternalID string `json:"external_id"`
DocumentExternalID string `json:"document_external_id"`
Name string `json:"name"`
Size int64 `json:"size"`
MimeType string `json:"mime_type"`
Path string `json:"path"`
URL string `json:"url"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}