Files
2025-12-11 11:39:02 +08:00

25 lines
525 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
* 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;
}
}
}