/* * 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.Request { /// /// Super class of all request /// public class LogRequest { private String _project; /// /// default constructor of SLS Request. /// public LogRequest() { } /// /// LogRequest constructor with project name. /// /// project name to do SLS Request public LogRequest(String project) { _project = project; } /// /// project name of the request /// public String Project { get { return _project; } set { _project = value; } } internal bool IsSetProject() { return _project != null; } } }