| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- 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;
- }
- }
- }
|