Files
autoglue/internal/handlers/dto/labels.go

20 lines
353 B
Go

package dto
import "github.com/google/uuid"
type LabelResponse struct {
ID uuid.UUID `json:"id"`
Key string `json:"key"`
Value string `json:"value"`
}
type CreateLabelRequest struct {
Key string `json:"key"`
Value string `json:"value"`
}
type UpdateLabelRequest struct {
Key *string `json:"key"`
Value *string `json:"value"`
}