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