mirror of
https://github.com/yawaflua/WebSockets.git
synced 2025-12-09 20:09:32 +02:00
10 lines
236 B
C#
10 lines
236 B
C#
using Microsoft.AspNetCore.Http;
|
|
using yawaflua.WebSockets.Models.Interfaces;
|
|
|
|
namespace yawaflua.WebSockets.Core;
|
|
|
|
public class WebSocketConfig
|
|
{
|
|
public Func<IWebSocket, HttpContext, Task>? OnOpenHandler { get; set; } = null;
|
|
|
|
} |