forked from ebhomengo/niki
16 lines
338 B
Go
16 lines
338 B
Go
package adminrefertimeparam
|
|
|
|
import (
|
|
"git.gocasts.ir/ebhomengo/niki/entity"
|
|
"git.gocasts.ir/ebhomengo/niki/param"
|
|
)
|
|
|
|
type GetAllReferTimeRequest struct {
|
|
Filter param.FilterRequest
|
|
}
|
|
|
|
type GetAllReferTimeResponse struct {
|
|
Data []entity.ReferTime `json:"data"`
|
|
FieldErrors map[string]string `json:"field_errors,omitempty"`
|
|
}
|