naming fix

This commit is contained in:
Pilzinsel64
2025-10-31 09:32:34 +01:00
parent 6ae5cd51b0
commit 53377485bb
3 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
namespace Pilz.Net.Api.Client; namespace Pilz.Net.Api.Client;
public interface IJobsHandler public interface IJobsClient
{ {
Task<JobInfo> Execute(string name); Task<JobInfo> Execute(string name);
Task<JobInfo> Get(string name); Task<JobInfo> Get(string name);

View File

@@ -3,7 +3,7 @@ using Pilz.Net.Api.Messages;
namespace Pilz.Net.Api.Client; namespace Pilz.Net.Api.Client;
public class JobsHandler(IApiClient client) : IJobsHandler public class JobsClient(IApiClient client) : IJobsClient
{ {
public async Task<IEnumerable<JobInfo>> GetAll() public async Task<IEnumerable<JobInfo>> GetAll()
{ {

View File

@@ -8,7 +8,7 @@
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
<Version>2.9.0</Version> <Version>2.9.1</Version>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>