You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
580 B

  1. using System;
  2. using System.Reflection;
  3. namespace Apewer.Web
  4. {
  5. /// <summary></summary>
  6. [Serializable]
  7. public class ApiFunction : ApiEntry
  8. {
  9. private MethodInfo _method = null;
  10. private bool _returnable = false;
  11. /// <summary></summary>
  12. public MethodInfo Method
  13. {
  14. get { return _method; }
  15. set { _method = value; }
  16. }
  17. /// <summary></summary>
  18. public bool Returnable
  19. {
  20. get { return _returnable; }
  21. set { _returnable = value; }
  22. }
  23. }
  24. }