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