mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-14 16:04:36 +01:00
16 lines
358 B
C#
16 lines
358 B
C#
namespace EpinelPS.Utils
|
|
{
|
|
/// <summary>
|
|
/// Represents that this class handles a message
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class PacketPathAttribute : Attribute
|
|
{
|
|
public string Url { get; set; }
|
|
public PacketPathAttribute(string url)
|
|
{
|
|
Url = url;
|
|
}
|
|
}
|
|
}
|