You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
525 B
24 lines
525 B
/*
|
|
* Copyright (C) Alibaba Cloud Computing
|
|
* All rights reserved.
|
|
*
|
|
* 版权所有 (C)阿里云计算有限公司
|
|
*/
|
|
|
|
using System;
|
|
|
|
namespace Aliyun.Api.LOG.Common.Utilities
|
|
{
|
|
/// <summary>
|
|
/// The Attribute to mark a field that corresponds a string.
|
|
/// </summary>
|
|
internal sealed class StringValueAttribute : System.Attribute
|
|
{
|
|
public string Value { get; private set; }
|
|
|
|
public StringValueAttribute(string value)
|
|
{
|
|
this.Value = value;
|
|
}
|
|
}
|
|
}
|
|
|