bottin/responses/post.go
2023-09-18 22:05:30 -04:00

18 lines
286 B
Go

package responses
import "codeberg.org/vlbeaudoin/voki/response"
type PostMembresResponse struct {
response.ResponseWithError
Data struct {
MembresInserted int64
}
}
type PostProgrammesResponse struct {
response.ResponseWithError
Data struct {
ProgrammesInserted int64
}
}