Files
houston-be/model/teamSeverity/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

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
}