Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CreateTeamDTO ¶
type CreateTeamDTO struct {
Name string `validate:"required,min=3,max=100" json:"name"`
}
type QueryTeamDTO ¶
type QueryTeamDTO struct { appDto.PaginationDTO Name string `validate:"omitempty" query:"name" pg:"operation=like" ` }
type UpdateTeamDTO ¶
type UpdateTeamDTO struct {
Name string `validate:"omitempty,min=3,max=100" json:"name,omitempty"`
}
Click to show internal directories.
Click to hide internal directories.