ExecutionLog3.cs 1.0 KB

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ReportServer.Models
  4. {
  5. public partial class ExecutionLog3
  6. {
  7. public string InstanceName { get; set; } = null!;
  8. public string? ItemPath { get; set; }
  9. public string? UserName { get; set; }
  10. public string? ExecutionId { get; set; }
  11. public string RequestType { get; set; } = null!;
  12. public string? Format { get; set; }
  13. public string? Parameters { get; set; }
  14. public string ItemAction { get; set; } = null!;
  15. public DateTime TimeStart { get; set; }
  16. public DateTime TimeEnd { get; set; }
  17. public int TimeDataRetrieval { get; set; }
  18. public int TimeProcessing { get; set; }
  19. public int TimeRendering { get; set; }
  20. public string Source { get; set; } = null!;
  21. public string Status { get; set; } = null!;
  22. public long ByteCount { get; set; }
  23. public long RowCount { get; set; }
  24. public string? AdditionalInfo { get; set; }
  25. }
  26. }