StatisticsLog.cs 531 B

123456789101112131415161718192021222324252627
  1. using System;
  2. namespace Repository.Entiies
  3. {
  4. public class StatisticsLog
  5. {
  6. public Guid Id { get; set; }
  7. public DateTime Timestamp { get; set; }
  8. public TraceState TraceState { get; set; }
  9. public RequstType RequstType { get; set; }
  10. public int RequestCode { get; set; }
  11. }
  12. public enum TraceState
  13. {
  14. PreTraceNG,
  15. TimeOutNG,
  16. GetOK,
  17. GetNG,
  18. PostOK,
  19. PostNG
  20. }
  21. public enum RequstType
  22. {
  23. Get,
  24. Post,
  25. }
  26. }