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.

22 lines
743 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CustomerOnlineV2.Business.Business
  7. {
  8. public static class LoggerProperty
  9. {
  10. public const string PROCESSID = "processId";
  11. public const string PAYOUTPARTNERID = "payoutPartnerId";
  12. public const string METHODNAME = "methodName";
  13. public const string CONTROLNO = "controlNo";
  14. public const string CREATEDBY = "createdBy";
  15. public const string MESSAGE = "message";
  16. public const string EXCEPTION = "exception";
  17. public const string LOGGER = "logger";
  18. public const string LEVEL = "level";
  19. public const string IPADDRESS = "userIP";
  20. }
  21. }