mirror of
https://github.com/roflmuffin/CounterStrikeSharp.git
synced 2025-12-06 16:06:37 -08:00
14 lines
383 B
C#
14 lines
383 B
C#
namespace CounterStrikeSharp.API.Core.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|
public class SchemaMemberAttribute : Attribute
|
|
{
|
|
public string ClassName { get; }
|
|
public string MemberName { get; }
|
|
|
|
public SchemaMemberAttribute(string className, string memberName)
|
|
{
|
|
ClassName = className;
|
|
MemberName = memberName;
|
|
}
|
|
} |