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.

23 lines
524 B

  1. namespace Swift.API
  2. {
  3. public class DbResult
  4. {
  5. public string ErrorCode { get; set; }
  6. public string Msg { get; set; }
  7. public string Id { get; set; }
  8. public string Extra { get; set; }
  9. public string Extra2 { get; set; }
  10. public string RequestXML { get; set; }
  11. public string ResponseXML { get; set; }
  12. public string TpErrorCode { get; set; }
  13. public DbResult() { }
  14. public void SetError(string errorCode, string msg, string id)
  15. {
  16. ErrorCode = errorCode;
  17. Msg = msg;
  18. Id = id;
  19. }
  20. }
  21. }