mirror of
https://github.com/ServUO/ServUO
synced 2026-08-11 20:23:04 -04:00
16 lines
No EOL
315 B
C#
16 lines
No EOL
315 B
C#
using System;
|
|
|
|
namespace Server
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class CorpseNameAttribute : Attribute
|
|
{
|
|
private readonly string m_Name;
|
|
public CorpseNameAttribute(string name)
|
|
{
|
|
m_Name = name;
|
|
}
|
|
|
|
public string Name => m_Name;
|
|
}
|
|
} |