Files
Desktop_RCULogAgent/bin/aliyun-log-csharp-sdk-master/SLSSDK/Response/PutLogsResponse.cs

31 lines
695 B
C#
Raw Normal View History

2025-12-11 11:39:02 +08:00
/*
* Copyright (C) Alibaba Cloud Computing
* All rights reserved.
*
* C
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Aliyun.Api.LOG.Response
{
/// <summary>
/// The response of the PutLogs API from sls server
/// </summary>
public class PutLogsResponse : LogResponse
{
/// <summary>
/// default constructor for PutLogsResponse
/// </summary>
/// <param name="header">header information in http response</param>
public PutLogsResponse(IDictionary<String, String>header)
:base(header)
{
}
}
}