blob: 1d8666bb62d90bf2e3053229341aad66134917f9 [file]
package note
// Note is one note attached to an Incident or Silence.
type Note struct {
Text string `json:"text" datastore:"text"`
Author string `json:"author" datastore:"author"`
TS int64 `json:"ts" datastore:"ts"` // Time in seconds since the epoch.
}