Files
houston-be/model/incidentTeam/model.go
Vijay Joshi 843274cf48 INFRA-3703 : Houston side changes to accomodate QA use case (#452)
* INFRA-3703 : Houston side changes to accomodate QA use case

* INFRA-3703 : UT failure fix

* INFRA-3703 : Minor changes

* INFRA-3703 : Unique constraint

* INFRA-3703 : Edit migration file

* INFRA-3703 : PR review comments and UT's

* INFRA-3703 : Channel name resolution
2024-09-05 19:27:42 +05:30

18 lines
399 B
Go

package incidentTeam
import (
incidentModel "houston/model/incident"
"houston/model/team"
"time"
)
type IncidentTeamDTO struct {
ID uint `json:"id"`
IncidentID uint `json:"incident_id"`
TeamID uint `json:"team_id"`
CreatedAt time.Time `json:"created_at"`
Incident incidentModel.IncidentDTO `json:"incident"`
Team team.TeamDTO `json:"team"`
}