File size: 141 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
package alert
// Feedback represents user provided information about a given alert
type Feedback struct {
ID int
NoiseReason string
}
|
1e92f2d |
1 2 3 4 5 6 7 8 |
package alert
// Feedback represents user provided information about a given alert
type Feedback struct {
ID int
NoiseReason string
}
|