* 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
18 lines
399 B
Go
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"`
|
|
}
|