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/VDAFile.cs')
-rw-r--r--UVtools.Core/FileFormats/VDAFile.cs14
1 files changed, 7 insertions, 7 deletions
diff --git a/UVtools.Core/FileFormats/VDAFile.cs b/UVtools.Core/FileFormats/VDAFile.cs
index 9ef424d..76abdf3 100644
--- a/UVtools.Core/FileFormats/VDAFile.cs
+++ b/UVtools.Core/FileFormats/VDAFile.cs
@@ -20,14 +20,14 @@ using UVtools.Core.Operations;
namespace UVtools.Core.FileFormats;
#region Sub Classes
-[Serializable]
+
[XmlRoot(ElementName = "root")]
public class VDARoot
{
- [Serializable]
+
public class VDAFileInfo
{
- [Serializable]
+
public class VDAVersion
{
public ushort Major { get; set; } = 1;
@@ -35,10 +35,10 @@ public class VDARoot
}
- [Serializable]
+
public class VDAWritten
{
- [Serializable]
+
[XmlRoot(ElementName = "By")]
public class VDABy
{
@@ -77,7 +77,7 @@ public class VDARoot
public VDAWritten Written { get; set; } = new();
}
- [Serializable]
+
public class VDASlices
{
public ushort Count { get; set; } = 1;
@@ -95,7 +95,7 @@ public class VDARoot
public uint LayerCount { get; set; }
}
- [Serializable]
+
public class VDAMachines
{
public string FileType { get; set; } = "ZIP File";