15 lines
362 B
C#
15 lines
362 B
C#
using System;
|
|
|
|
namespace Upsilon.BaseTypes.UserData
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Enum | AttributeTargets.Interface)]
|
|
public class UpsilonCreateStaticAttribute : Attribute
|
|
{
|
|
public string Name { get; }
|
|
|
|
public UpsilonCreateStaticAttribute(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
}
|
|
} |