* INFRA-2873 : Boilerplate setup for team management revamp: * INFRA-2873 : Complete till add team flow * INFRA-2873 : Added unit tests and migration scripts * INFRA-2873 : Code review comments * INFRA-2873 : Add getter for team severity * INFRA-2873 : Second round of review
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
|
|
}
|