better plan stats

This commit is contained in:
2022-12-16 08:59:20 +01:00
parent 80435ff696
commit 88a9f17efe
6 changed files with 51 additions and 6 deletions

View File

@@ -0,0 +1,21 @@
using JetBrains.Annotations;
using Realms;
namespace EscapeRoomEngine.Engine.Runtime.Measurements
{
public class PlanResult : EmbeddedObject
{
public float TargetTime { get; set; }
public float SectionPercentile { get; set; }
public float TimeEstimation { get; set; }
[UsedImplicitly]
public PlanResult() {}
public PlanResult(float targetTime, float sectionPercentile, float timeEstimation)
{
TargetTime = targetTime;
SectionPercentile = sectionPercentile;
TimeEstimation = timeEstimation;
}
}
}