15 lines
229 B
Go
15 lines
229 B
Go
|
|
package teamUser
|
||
|
|
|
||
|
|
import (
|
||
|
|
"houston/model/team"
|
||
|
|
"houston/model/user"
|
||
|
|
)
|
||
|
|
|
||
|
|
type TeamUserDTO struct {
|
||
|
|
ID uint `json:"id"`
|
||
|
|
TeamID uint `json:"team_id"`
|
||
|
|
UserID uint `json:"user_id"`
|
||
|
|
Team team.TeamDTO
|
||
|
|
User user.UserDTO
|
||
|
|
}
|