13 lines
230 B
Go
13 lines
230 B
Go
package entity
|
|
|
|
type IncidentSeverityTeamJoinEntity struct {
|
|
IncidentId int
|
|
Title string
|
|
Status IncidentStatus
|
|
SeverityId int
|
|
SeverityName string
|
|
SlackChannel string
|
|
TeamsId int
|
|
TeamsName string
|
|
}
|