package res import ( "time" "github.com/google/uuid" ) type BackboneResponse struct { ID uuid.UUID `json:"id"` BackboneCode string `json:"backbone_code"` DevStart string `json:"dev_start"` DevEnd string `json:"dev_end"` DeviceStartID uuid.UUID `json:"device_start_id"` DeviceEndID uuid.UUID `json:"device_end_id"` CoreAmount int `json:"core_amount"` TotalFishbone int `json:"total_fishbone"` CreatedAt time.Time `json:"created_at"` UpdatedAt time.Time `json:"updated_at"` }