NAM-APJATEL-BACKEND/model/dto/req/backbone_dto.go

9 lines
212 B
Go

package req
import "github.com/google/uuid"
type BackboneDTO struct {
DeviceStartID uuid.UUID `json:"dev_start_id"`
DeviceEndID uuid.UUID `json:"dev_end_id"`
CoreAmount int `json:"core_amount"`
}