Files
houston-be/model/severity/model.go
Vijay Joshi 17acefb2a8 INFRA-2901 : Add severity team function for incident use cases (#383)
* INFRA-2901 : Add severity team function for incident use cases

* INFRA-2901 : Add migration scripts as single and add nullability in bot and channel response

---------

Co-authored-by: Shashank Shekhar <shashank.shekhar@navi.com>
2024-02-28 18:20:10 +05:30

11 lines
286 B
Go

package severity
type SeverityDTO struct {
ID uint `json:"id"`
Name string `json:"name"`
Description string `json:"description"`
Sla int `json:"sla"`
SlackUserIds []string `json:"slack_user_ids"`
Priority int `json:"priority"`
}