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