17 lines
348 B
Go
17 lines
348 B
Go
package res
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type BackboneResponse struct {
|
|
ID uuid.UUID `json:"id"`
|
|
DevStart string `json:"dev_start"`
|
|
DevEnd string `json:"dev_end"`
|
|
CoreAmount int `json:"core_amount"`
|
|
TotalFishbone int `json:"total_fishbone"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
} |