diff options
| author | Roy <Roy.mail.net@gmail.com> | 2022-10-23 23:56:56 +0300 |
|---|---|---|
| committer | Roy <Roy.mail.net@gmail.com> | 2022-10-23 23:56:56 +0300 |
| commit | 5e02391d9f37336169a045b9f7d1328bd72a7aef (patch) | |
| tree | 158e519a9e10f5bde7eec62863922d0d18e087ad /Software/Visual_Studio/PPC/Tango.PPC.Shared | |
| parent | ddde7144515d7cb48a8f41d085aa738c6e4d36fa (diff) | |
| download | Tango-5e02391d9f37336169a045b9f7d1328bd72a7aef.tar.gz Tango-5e02391d9f37336169a045b9f7d1328bd72a7aef.zip | |
Total Dye Time & Meters on FSE.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Shared')
3 files changed, 30 insertions, 0 deletions
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 @@ </Compile> <Compile Include="Events\PushEmulatedEventRequest.cs" /> <Compile Include="Events\PushEmulatedEventResponse.cs" /> + <Compile Include="Information\GetMachineCountersResponse.cs" /> + <Compile Include="Information\GetMachineCountersRequest.cs" /> <Compile Include="Information\GetMachineInformationRequest.cs" /> <Compile Include="Information\GetMachineInformationResponse.cs" /> <Compile Include="Information\InformationPackage.cs" /> |
