using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace LolDataRequestLib
{
///
/// DB와 MAnager간의 데이터의 정의에 관련된 클래스.
/// 0 ? attribs[0].StringValue : null;
}
public class StringValueAttribute : Attribute
{
#region Properties
///
/// Holds the stringvalue for a value in an enum.
///
public string StringValue { get; protected set; }
#endregion
#region Constructor
///
/// Constructor used to init a StringValue Attribute
///
///
public StringValueAttribute(string value)
{
this.StringValue = value;
}
#endregion
}
}
}