package com.imt.intimamedia.vo { import com.imt.intimamedia.helpers.AMFDateConverter; [RemoteClass(alias="com.imt.intimamedia.vo.TreatmentVo")] [Bindable] /** * Objet de RDV */ public class TreatmentVo { private var _type : String; private var _name : String; private var _posology : String; private var _startDate : String; /** * Présence de HTA * * @default false */ public function get type () : String { return _type; } /** * @private */ public function set type ( value : String ) : void { _type = value; } /** * Présence de HTA * * @default false */ public function get name () : String { return _name; } /** * @private */ public function set name ( value : String ) : void { _name = value; } /** * Présence de HTA * * @default false */ public function get posology () : String { return _posology; } /** * @private */ public function set posology ( value : String ) : void { _posology = value; } /** * Date du traitement * * @default null */ public function get startDate () : String { return _startDate; } /** * @private */ public function set startDate ( value : String ) : void { _startDate = value; } } }