You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.0 KiB
30 lines
1.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace IoT.Shared.Application.Models
|
|
{
|
|
public class Methods
|
|
{
|
|
public const string ServerToClient = nameof(ServerToClient);
|
|
public const string ClientToServer = nameof(ClientToServer);
|
|
|
|
public const string HealthCheckRequest = nameof(HealthCheckRequest);
|
|
public const string HealthCheckResponse = nameof(HealthCheckResponse);
|
|
|
|
public const string NodeResponse = nameof(NodeResponse);
|
|
|
|
public const string ProductRequest = nameof(ProductRequest);
|
|
public const string ProductResponse = nameof(ProductResponse);
|
|
|
|
public const string DeviceResponse = nameof(DeviceResponse);
|
|
|
|
public const string DataResponse = nameof(DataResponse);
|
|
|
|
public const string CallApi = nameof(CallApi);
|
|
public const string ApiCallback = nameof(ApiCallback);
|
|
|
|
public const string EditNodeRequest = nameof(EditNodeRequest);
|
|
public const string EditNodeResponse = nameof(EditNodeResponse);
|
|
}
|
|
} |