Files
houston-be/model/incidentUser/model.go
Vijay Joshi 804be01c2f INFRA-3467 : Private Houston Incidents (#445)
* 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
2024-08-08 19:20:04 +05:30

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
}