21 lines
426 B
C#
21 lines
426 B
C#
/*
|
||
* 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);
|
||
}
|
||
}
|