ResultMessage.cs 602 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace CB.Entity
  6. {
  7. public class ResultMessage
  8. {
  9. /// <summary>
  10. /// 操作状态
  11. /// </summary>
  12. private bool state = false;
  13. public bool State
  14. {
  15. get { return state; }
  16. set { state = value; }
  17. }
  18. /// <summary>
  19. /// 返回信息
  20. /// </summary>
  21. private string message;
  22. public string Message
  23. {
  24. get { return message; }
  25. set { message = value; }
  26. }
  27. }
  28. }