Files
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
459 B
Go

package incidentTeamTagValue
import (
"houston/model/incidentTeam"
"houston/model/tagValue"
"time"
)
type IncidentTeamTagValueDTO struct {
ID uint `json:"id"`
IncidentTeamID uint `json:"incident_team_id"`
TagValueID uint `json:"tag_value_id"`
CreatedAt time.Time `json:"created_at"`
IncidentTeam incidentTeam.IncidentTeamDTO `json:"incident_team"`
TagValue tagValue.TagValueDTO `json:"tag_value"`
}