forked from BitcoderCZ/BuildPlate_Editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJsonBuildPlate.cs
28 lines (27 loc) · 911 Bytes
/
JsonBuildPlate.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BuildPlate_Editor
{
[Serializable]
public class JsonBuildPlate
{
public double blocksPerMeter { get; set; }
public BuildPlateDimension dimension { get; set; }
public string eTag { get; set; }
public Guid id { get; set; }
public string isModified { get; set; }
public string lastUpdated { get; set; }
public string locked { get; set; }
public string model { get; set; }
public int numberOfBlocks { get; set; }
public BuildPlateOffset offset { get; set; }
public int order { get; set; }
public int requiredLevel { get; set; }
public string surfaceOrientation { get; set; }
public Guid templateId { get; set; }
public string type { get; set; }
}
}