aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/Printing/PrintingConfiguration.cs
blob: ff406cefd4d446e00254c24bc6f38d0bd09dedfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.PPC.Common.Printing
{
    public class PrintingConfiguration
    {
        public int RemainingUnits { get; set; }
        public double GlobalStartPosition { get; set; }
        public double FirstUnitStartPosition { get; set; }
    }
}