diff options
Diffstat (limited to 'app/php/model/Entry.php')
-rw-r--r-- | app/php/model/Entry.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/php/model/Entry.php b/app/php/model/Entry.php index 3106e8e..4b93f04 100644 --- a/app/php/model/Entry.php +++ b/app/php/model/Entry.php @@ -14,6 +14,7 @@ class Entry extends ActiveRecord { public $AllDay; public $Name; public $Location; + public $LastModified; public $CalendarID; @@ -25,6 +26,7 @@ class Entry extends ActiveRecord { 'all_day' => 'AllDay', 'name' => 'Name', 'location' => 'Location', + 'last_modified' => 'LastModified', '_calendar' => 'CalendarID' ]; |