Initial commit

This commit is contained in:
Mikhail Thompson
2024-06-26 19:03:44 +03:00
commit 838240de58
72 changed files with 4171 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
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;
}
}
}