* INFRA-3467 : Private Houston Incidents * INFRA-3627 : Minor self review * INFRA-3627 : PR Review changes INFRA-3627 : Minor changes INFRA-3627 : UT fix INFRA-3637 : Message changes INFRA-3627 : Minor changes INFRA-3627 : Constant fix INFRA-3627 : Do not post SLA breach in public channels for private incidents
15 lines
273 B
Go
15 lines
273 B
Go
package incidentUser
|
|
|
|
import (
|
|
"houston/model/incident"
|
|
"houston/model/user"
|
|
)
|
|
|
|
type IncidentUserDTO struct {
|
|
ID uint `json:"id"`
|
|
IncidentID uint `json:"incident_id"`
|
|
UserID uint `json:"user_id"`
|
|
Incident incident.IncidentDTO
|
|
User user.UserDTO
|
|
}
|