16 lines
470 B
Go
16 lines
470 B
Go
package incidents
|
|
|
|
import (
|
|
"dynatron.me/x/stillbox/internal/jsontypes"
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type Incident struct {
|
|
ID uuid.UUID `json:"id"`
|
|
Name string `json:"name"`
|
|
Description *string `json:"description"`
|
|
StartTime *jsontypes.Time `json:"startTime"`
|
|
EndTime *jsontypes.Time `json:"endTime"`
|
|
Location jsontypes.Location `json:"location"`
|
|
Metadata jsontypes.Metadata `json:"metadata"`
|
|
}
|