12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- from ..common.ConfigGroup import ConfigGroup
- from ..common.ConfigSet import ConfigSet
- from .CGTopic import CGTopic
- class CGAgenda(ConfigGroup):
- def __init__(self):
- self.cp_AgendaType = int()
- self.cp_IncludeMinutes = bool()
- self.cp_Title = ""
- self.cp_Date = str()
- self.cp_Time = str()
- self.cp_Location = ""
- self.cp_ShowMeetingType = bool()
- self.cp_ShowRead = bool()
- self.cp_ShowBring = bool()
- self.cp_ShowNotes = bool()
- self.cp_ShowCalledBy = bool()
- self.cp_ShowFacilitator = bool()
- self.cp_ShowNotetaker = bool()
- self.cp_ShowTimekeeper = bool()
- self.cp_ShowAttendees = bool()
- self.cp_ShowObservers = bool()
- self.cp_ShowResourcePersons = bool()
- self.cp_TemplateName = str()
- self.cp_TemplatePath = str()
- self.cp_ProceedMethod = int()
- self.cp_Topics = ConfigSet(CGTopic)
|