Files

21 lines
426 B
C#
Raw Permalink Normal View History

2025-12-11 11:39:02 +08:00
/*
* Copyright (C) Alibaba Cloud Computing
* All rights reserved.
*
* C
*/
using System;
using Aliyun.Api.LOG.Common.Communication;
namespace Aliyun.Api.LOG.Common.Handlers
{
/// <summary>
/// Handles the response message from the services.
/// </summary>
internal interface IResponseHandler
{
void Handle(ServiceResponse response);
}
}