| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package com.imt.intimamedia.vo
- {
- [RemoteClass(alias="com.imt.intimamedia.vo.TermsVo")]
- [Bindable]
- /**
- * Objet de conditions générales
- */
- public class TermsVo
- {
- private var _id : int = 0;
- private var _url : String = ""
-
- /**
- * Primary key des cgv
- *
- * @default false
- */
- public function get id () : int
- {
- return _id;
- }
-
- /**
- * @private
- */
- public function set id ( value : int ) : void
- {
- _id = value;
- }
-
- /**
- * Url des cgv
- *
- * @default 0
- */
- public function get url () : String
- {
- return _url;
- }
-
- /**
- * @private
- */
- public function set url ( value : String ) : void
- {
- _url = value;
- }
- }
- }
|