21 lines
609 B
C#
21 lines
609 B
C#
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;
|
|
}
|
|
}
|
|
} |