18 lines
547 B
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"`
|
|
}
|