Files
houston-be/model/teamUser/model.go
Vijay Joshi 7c1282711b INFRA-2873 : Severity wise team member list - Team Management Module - Add team (#372)
* 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
2024-02-23 16:05:20 +05:30

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
}