15 lines
No EOL
254 B
C#
15 lines
No EOL
254 B
C#
using System;
|
|
|
|
namespace Server
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class CorpseNameAttribute : Attribute
|
|
{
|
|
public CorpseNameAttribute(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
|
|
public string Name{ get; }
|
|
}
|
|
} |