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
+14
View File
@@ -0,0 +1,14 @@
package dto
type GetDocumentSettingsRequest struct {
ExternalID string `json:"external_id"`
}
type DocumentSettingsResponse struct {
IsPublic bool `json:"is_public"`
}
type UpdateDocumentSettingsRequest struct {
ExternalID string `json:"external_id"`
IsPublic bool `json:"is_public"`
}