source: EDIS/tags/ed/tracking-ui-core/src/main/flex/gov/va/med/edp/vo/reports/PatientExposureVO.as@ 1240

Last change on this file since 1240 was 1240, checked in by George Lilly, 13 years ago

new version from the VA

File size: 509 bytes
Line 
1package gov.va.med.edp.vo.reports
2{
3 import com.adobe.cairngorm.vo.IValueObject;
4
5 import mx.collections.ICollectionView;
6
7 [Bindable]
8 public class PatientExposureVO implements IValueObject
9 {
10 public var id: String;
11 public var roomName: String;
12 public var shiftIn: String;
13 public var timeIn: Date;
14 public var shiftOut: String;
15 public var timeOut: Date;
16 public var dx: String;
17 public var disposition: String;
18 public var arrival: String;
19 public var notes: String;
20 }
21}
Note: See TracBrowser for help on using the repository browser.