begin developing a basic message based web api

This commit is contained in:
Pilzinsel64
2024-08-14 14:59:05 +02:00
parent 1932443a20
commit 02a6c3bf6a
9 changed files with 115 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
namespace Pilz.Networking.Api;
[AttributeUsage(AttributeTargets.Method)]
public class MessageHandlerAttribute(string url) : Attribute
{
public string Url { get; set; } = url;
public Type? Serializer { get; set; }
}