17 lines
541 B
Go
17 lines
541 B
Go
|
|
package model
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type Project struct {
|
||
|
|
ID string `json:"id"`
|
||
|
|
UserID string `json:"user_id"`
|
||
|
|
Name string `json:"name"`
|
||
|
|
OriginalImageURL string `json:"original_image_url"`
|
||
|
|
GeneratedImageURL string `json:"generated_image_url"`
|
||
|
|
FloorStyle string `json:"floor_style"`
|
||
|
|
Pattern string `json:"pattern"`
|
||
|
|
RoomType string `json:"room_type"`
|
||
|
|
CreatedAt time.Time `json:"created_at"`
|
||
|
|
UpdatedAt time.Time `json:"updated_at"`
|
||
|
|
}
|