Index: lams_common/src/flash/org/lamsfoundation/lams/common/util/DTO.as =================================================================== diff -u --- lams_common/src/flash/org/lamsfoundation/lams/common/util/DTO.as (revision 0) +++ lams_common/src/flash/org/lamsfoundation/lams/common/util/DTO.as (revision 62ff916fa8974a1ed88c65e225be256a7cd55c80) @@ -0,0 +1,34 @@ + /** +* DTO Generic data transfer obj +*/ +class DTO +{ + //Declarations + //signifies update or errrr another type + public var _type : String; + public var _body : Object; + //Constructor + function DTO (t : String, b : Object) + { + _type = t; + _body = b; + } + //Getters+Setters + public function get type () : String + { + return _type; + } + public function get _body () : Object + { + return body; + } + public function set type (t : String) : Void + { + _type = t; + } + + public function set body (b : Object) : Void + { + _body = b; + } +}