yavsc/src/GoogleCode/GoogleTranslate/Misc/StringValueAttribute.cs

18 lines
402 B
C#
Raw Normal View History

2018-12-11 09:15:16 +00:00
using System;
namespace GoogleTranslateNET.Misc
{
/// <summary>
/// This attribute is used to represent a string value
/// for a value in an enum.
/// </summary>
public class StringValueAttribute : Attribute
{
public string StringValue { get; private set; }
public StringValueAttribute(string value)
{
StringValue = value;
}
}
}