1: <?php
2:
3: namespace webfilesframework\core\datastore\types\googlecalendar;
4:
5: use webfilesframework\core\datasystem\file\format\MWebfile;
6:
7: class MEvent extends MWebfile
8: {
9: /** @var string */
10: private $m_sSummary;
11: /** @var string */
12: private $m_sDescription;
13:
14:
15: /** @var string */
16: private $m_sStart;
17: /** @var string */
18: private $m_sEnd;
19:
20: /**
21: * @return string
22: */
23: public function getSummary()
24: {
25: return $this->m_sSummary;
26: }
27:
28: /**
29: * @param string $summary
30: */
31: public function setSummary($summary)
32: {
33: $this->m_sSummary = $summary;
34: }
35:
36: /**
37: * @return string
38: */
39: public function getDescription()
40: {
41: return $this->m_sDescription;
42: }
43:
44: /**
45: * @param string $description
46: */
47: public function setDescription($description)
48: {
49: $this->m_sDescription = $description;
50: }
51:
52: /**
53: * @return string
54: */
55: public function getStart()
56: {
57: return $this->m_sStart;
58: }
59:
60: /**
61: * @param string $start
62: */
63: public function setStart($start)
64: {
65: $this->m_sStart = $start;
66: }
67:
68: /**
69: * @return string
70: */
71: public function getEnd()
72: {
73: return $this->m_sEnd;
74: }
75:
76: /**
77: * @param string $end
78: */
79: public function setEnd($end)
80: {
81: $this->m_sEnd = $end;
82: }
83:
84:
85:
86: }