/*
* 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.Data
{
///
/// This class presents one log content in logItem
///
public class LogContent
{
private String _key = String.Empty;
private String _value = String.Empty;
///
/// default constructor
///
public LogContent()
{
}
///
/// constructure with specified parameters
///
/// log content's key
/// log content's value
public LogContent(String key, String value)
{
_key = key;
_value = value;
}
///
/// the logcontent's key
///
public String Key
{
get { return _key; }
set { _key = value; }
}
///
/// the logcontent's value
///
public String Value
{
get { return _value; }
set { _value = value; }
}
}
}