Files
g.hnyhua.cn/COSXML/Utils/CosValueAttribute.cs

26 lines
452 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
/**
* Copyright (c) 2018 Tencent Cloud. All rights reserved.
* 11/1/2018 9:48:38 PM
* bradyxiao
*/
namespace COSXML.Utils
{
public sealed class CosValueAttribute : Attribute
{
public string Value
{
get;
private set;
}
public CosValueAttribute(string value)
{
this.Value = value;
}
}
}