Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…

using System; | |
namespace Maktub82.Samples.Attributes.Attributes | |
{ | |
[AttributeUsage(AttributeTargets.Field, AllowMultiple = true)] | |
public class ApiValueAttribute : Attribute | |
{ | |
public readonly string ApiValue; | |
public ApiValueAttribute(string apiValue) | |
{ | |
ApiValue = apiValue; | |
} | |
} | |
} |