Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'UVtools.Core/FileFormats/FileFormat.cs')
-rw-r--r--UVtools.Core/FileFormats/FileFormat.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/UVtools.Core/FileFormats/FileFormat.cs b/UVtools.Core/FileFormats/FileFormat.cs
index 7c72f15..3f245f2 100644
--- a/UVtools.Core/FileFormats/FileFormat.cs
+++ b/UVtools.Core/FileFormats/FileFormat.cs
@@ -354,7 +354,9 @@ namespace UVtools.Core.FileFormats
public abstract float PrintTime { get; }
-
+
+ public float PrintTimeHours => (float) Math.Round(PrintTime / 3600, 2);
+
public abstract float UsedMaterial { get; }
public abstract float MaterialCost { get; }