TermsVo.as 716 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package com.imt.intimamedia.vo
  2. {
  3. [RemoteClass(alias="com.imt.intimamedia.vo.TermsVo")]
  4. [Bindable]
  5. /**
  6. * Objet de conditions générales
  7. */
  8. public class TermsVo
  9. {
  10. private var _id : int = 0;
  11. private var _url : String = ""
  12. /**
  13. * Primary key des cgv
  14. *
  15. * @default false
  16. */
  17. public function get id () : int
  18. {
  19. return _id;
  20. }
  21. /**
  22. * @private
  23. */
  24. public function set id ( value : int ) : void
  25. {
  26. _id = value;
  27. }
  28. /**
  29. * Url des cgv
  30. *
  31. * @default 0
  32. */
  33. public function get url () : String
  34. {
  35. return _url;
  36. }
  37. /**
  38. * @private
  39. */
  40. public function set url ( value : String ) : void
  41. {
  42. _url = value;
  43. }
  44. }
  45. }