using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace nksrv.Utils { /// /// Represents that this class handles a message /// [AttributeUsage(AttributeTargets.Class)] public class PacketPathAttribute : Attribute { public string Url { get; set; } public PacketPathAttribute(string url) { Url = url; } } }