narasiahli-be/app/module/ai_chat_files/response/ai_chat_files.response.go

18 lines
547 B
Go

package response
import "time"
type AiChatFilesResponse struct {
ID uint `json:"id"`
MessageId uint `json:"messageId"`
FilePath *string `json:"filePath"`
FileUrl *string `json:"fileUrl"`
FileName *string `json:"fileName"`
FileAlt *string `json:"fileAlt"`
FileType *string `json:"fileType"`
Size *string `json:"size"`
IsActive bool `json:"isActive"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}