source: Dev/trunk/classes/Application.php @ 78

Last change on this file since 78 was 78, checked in by basvannuland, 14 years ago

save and load application
start with save and load session

File size: 416 bytes
Line 
1<?php
2
3/**
4 * Description of Application
5 *
6 * @author fpvanagthoven
7 */
8class Application {
9   
10    public $id;
11    public $title;
12    public $description;
13    public $style;
14
15    public function __construct($id = null, $title = null, $description = null, $style = null)
16    {
17        $this->id = $id;
18        $this->title = $title;
19        $this->description = $description;
20        $this->style = $style;
21    }
22
23
24}
25?>
Note: See TracBrowser for help on using the repository browser.