ExecutionLogStorage.cs 1.0 KB

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