From 5e02391d9f37336169a045b9f7d1328bd72a7aef Mon Sep 17 00:00:00 2001 From: Roy Date: Sun, 23 Oct 2022 23:56:56 +0300 Subject: Total Dye Time & Meters on FSE. --- .../Information/GetMachineCountersRequest.cs | 13 +++++++++++++ .../Information/GetMachineCountersResponse.cs | 15 +++++++++++++++ .../PPC/Tango.PPC.Shared/Tango.PPC.Shared.csproj | 2 ++ 3 files changed, 30 insertions(+) create mode 100644 Software/Visual_Studio/PPC/Tango.PPC.Shared/Information/GetMachineCountersRequest.cs create mode 100644 Software/Visual_Studio/PPC/Tango.PPC.Shared/Information/GetMachineCountersResponse.cs (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Shared') diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Shared/Information/GetMachineCountersRequest.cs b/Software/Visual_Studio/PPC/Tango.PPC.Shared/Information/GetMachineCountersRequest.cs new file mode 100644 index 000000000..120f85db0 --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.Shared/Information/GetMachineCountersRequest.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.PPC.Shared.Information +{ + public class GetMachineCountersRequest + { + + } +} diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Shared/Information/GetMachineCountersResponse.cs b/Software/Visual_Studio/PPC/Tango.PPC.Shared/Information/GetMachineCountersResponse.cs new file mode 100644 index 000000000..622e083c3 --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.Shared/Information/GetMachineCountersResponse.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.PPC.Shared.Information +{ + public class GetMachineCountersResponse + { + public int TotalDyeMeters { get; set; } + + public TimeSpan TotalDyeTime { get; set; } + } +} diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Shared/Tango.PPC.Shared.csproj b/Software/Visual_Studio/PPC/Tango.PPC.Shared/Tango.PPC.Shared.csproj index 3664a1835..8548aa9cc 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Shared/Tango.PPC.Shared.csproj +++ b/Software/Visual_Studio/PPC/Tango.PPC.Shared/Tango.PPC.Shared.csproj @@ -64,6 +64,8 @@ + + -- cgit v1.3.1