Files

11 lines
220 B
C#
Raw Permalink Normal View History

2026-09-02 16:31:50 +08:00
using Microsoft.AspNetCore.Http;
namespace JSMachine.WMS.Business.SSE
{
public class ClientConnection
{
public HttpResponse Response { get; set; }
public string ClientId { get; set; }
}
}