13 lines
296 B
Go
13 lines
296 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Room struct {
|
|
ID int64 `json:"id"`
|
|
WarehouseID int64 `json:"warehouseId"`
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
}
|