Model Definition
// Event is the demo model.
type Event struct {
dirty.Enabled
Name string `json:"name"`
ID int `json:"id"`
IsActive bool `json:"is_active"`
MustBool bool `json:"must_bool"`
}
Configuration