2023-09-05 16:15:22 -04:00
|
|
|
package responses
|
|
|
|
|
2023-09-18 22:05:30 -04:00
|
|
|
import "codeberg.org/vlbeaudoin/voki/response"
|
|
|
|
|
2023-09-05 16:15:22 -04:00
|
|
|
type PostMembresResponse struct {
|
2023-09-18 22:05:30 -04:00
|
|
|
response.ResponseWithError
|
2023-09-05 16:15:22 -04:00
|
|
|
Data struct {
|
|
|
|
MembresInserted int64
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type PostProgrammesResponse struct {
|
2023-09-18 22:05:30 -04:00
|
|
|
response.ResponseWithError
|
2023-09-05 16:15:22 -04:00
|
|
|
Data struct {
|
|
|
|
ProgrammesInserted int64
|
|
|
|
}
|
|
|
|
}
|