mirror of https://github.com/abpframework/abp.git
10 changed files with 209 additions and 11 deletions
@ -0,0 +1,24 @@ |
|||
using System; |
|||
|
|||
namespace Volo.ClientSimulation.Snapshot |
|||
{ |
|||
[Serializable] |
|||
public class ScenarioStepSummarySnapshot |
|||
{ |
|||
public string DisplayText { get; set; } |
|||
|
|||
public int ExecutionCount { get; set; } |
|||
|
|||
public int SuccessCount { get; set; } |
|||
|
|||
public int FailCount { get; set; } |
|||
|
|||
public double AvgExecutionDuration { get; set; } |
|||
|
|||
public double TotalExecutionDuration { get; set; } |
|||
|
|||
public double MinExecutionDuration { get; set; } |
|||
|
|||
public double MaxExecutionDuration { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,13 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace Volo.ClientSimulation.Snapshot |
|||
{ |
|||
[Serializable] |
|||
public class ScenarioSummarySnapshot |
|||
{ |
|||
public string DisplayText { get; set; } |
|||
|
|||
public List<ScenarioStepSummarySnapshot> Steps { get; set; } |
|||
} |
|||
} |
|||
Loading…
Reference in new issue