From 1d61ebacc13b21c1fffa52e0c315124f3bf3843e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=C3=A1n=20C=20McCord?= Date: Sat, 3 Sep 2022 15:55:46 -0400 Subject: [PATCH] agenda: add cue notes field --- agenda/agenda.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/agenda/agenda.go b/agenda/agenda.go index f649304..a96bc4e 100644 --- a/agenda/agenda.go +++ b/agenda/agenda.go @@ -143,6 +143,10 @@ type Cue struct { // Name is the unique, human-friendly name for this cue Name string `json:"name" yaml:"name"` + // Notes is a free-form notes field. + // This is optional and only displayed in the administrative console. + Notes string `json:"notes" yaml:"notes"` + // QLabID is the unique identifier for this cue in QLab (informational only; // not used by Audimance) QLabID string `json:"qlabID" yaml:"qlabID"`