package com.imt.intimamedia.vo { import com.imt.intimamedia.helpers.AMFDateConverter; [RemoteClass(alias="com.imt.intimamedia.vo.MessageVo")] [Bindable] /** * Objet message */ public class MessageVo { private var _mail : String = ""; private var _firstname : String = ""; private var _lastname : String = ""; private var _organization : String = ""; private var _phone : String = ""; private var _message : String = ""; /** * email * * @default "" */ public function get mail () : String { return _mail; } /** * @private */ public function set mail ( value : String ) : void { _mail = value; } /** * Prenom * * @default "" */ public function get firstname () : String { return _firstname; } /** * @private */ public function set firstname ( value : String ) : void { _firstname = value; } /** * Nom * * @default "" */ public function get lastname () : String { return _lastname; } /** * @private */ public function set lastname ( value : String ) : void { _lastname = value; } /** * Phone * * @default "" */ public function get phone () : String { return _phone; } /** * @private */ public function set phone ( value : String ) : void { _phone = value; } /** * Organization * * @default "" */ public function get organization () : String { return _organization; } /** * @private */ public function set organization ( value : String ) : void { _organization = value; } /** * Message * * @default "" */ public function get message () : String { return _message; } /** * @private */ public function set message ( value : String ) : void { _message = value; } } }