9 lines
184 B
C#
9 lines
184 B
C#
using System.Net;
|
|
|
|
namespace Pilz.Net.Api;
|
|
|
|
public class ApiContextEventArgs(HttpListenerContext context) : EventArgs
|
|
{
|
|
public HttpListenerContext Context { get; } = context;
|
|
}
|