Files
EpinelPS/nksrv/Utils/PacketPathAttribute.cs
Mikhail Thompson 838240de58 Initial commit
2024-06-26 19:03:44 +03:00

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;
}
}
}