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.

30 lines
649 B

3 weeks ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NFine.Application.Models
  7. {
  8. public class Result
  9. {
  10. public Result()
  11. {
  12. }
  13. public Result(bool success, string message, string printstr, object data)
  14. {
  15. Success = success;
  16. Message = message;
  17. PrintStr = printstr;
  18. Data = data;
  19. }
  20. public bool Success { get; set; }
  21. public string Message { get; set; }
  22. public string PrintStr { get; set; }
  23. public object Data { get; set; }
  24. }
  25. }