26 lines
452 B
C#
26 lines
452 B
C#
|
|
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;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|