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.
38 lines
1.5 KiB
38 lines
1.5 KiB
namespace 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);
|
|
|
|
public const string EditDeviceRequest = nameof(EditDeviceRequest);
|
|
public const string EditDeviceResponse = nameof(EditDeviceResponse);
|
|
|
|
public const string DeleteDeviceRequest = nameof(DeleteDeviceRequest);
|
|
public const string DeleteDeviceResponse = nameof(DeleteDeviceResponse);
|
|
|
|
public const string EditDataRequest = nameof(EditDataRequest);
|
|
public const string EditDataResponse = nameof(EditDataResponse);
|
|
|
|
public const string DeleteDataRequest = nameof(DeleteDataRequest);
|
|
public const string DeleteDataResponse = nameof(DeleteDataResponse);
|
|
}
|
|
} |