* 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
16 lines
309 B
Go
16 lines
309 B
Go
package teamSeverity
|
|
|
|
import (
|
|
"houston/model/severity"
|
|
"houston/model/team"
|
|
)
|
|
|
|
type TeamSeverityDTO struct {
|
|
ID uint `json:"id"`
|
|
TeamID uint `json:"team_id"`
|
|
SeverityID uint `json:"severity_id"`
|
|
Sla int `json:"sla"`
|
|
TeamDTO team.TeamDTO
|
|
SeverityDTO severity.SeverityDTO
|
|
}
|