Add entity classes

Add object wrappers for the application database entities.
This commit is contained in:
2011-12-17 00:59:30 +00:00
parent 18c5c75a1c
commit c8eaee79a1
5 changed files with 399 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<?php
class StatusBoard_IncidentStatus {
protected $id;
protected $incident;
protected $status;
protected $time;
}
?>