mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-13 23:44:45 +01:00
22 lines
472 B
C#
22 lines
472 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace nksrv.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;
|
|
}
|
|
}
|
|
}
|