source: EDIS/tags/ed/tracking-ui-core/src/main/flex/gov/va/med/edp/vo/ColorMapVO.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: 402 bytes
Line 
1/* ColorMapVO.as */
2
3package gov.va.med.edp.vo
4{
5 import com.adobe.cairngorm.vo.IValueObject;
6
7 import mx.collections.ArrayCollection;
8
9 [Bindable]
10 public class ColorMapVO implements IValueObject
11 {
12 public var id: String;
13 public var name: String;
14 public var type: String;
15 public var used: Boolean = false;
16 public var matches: ArrayCollection; // array of ColorMatchVO
17 }
18}
Note: See TracBrowser for help on using the repository browser.