add XHubConnectionDto for Storing Available Connection if we need ...

This commit is contained in:
2025-11-28 07:52:15 +03:30
parent b1cf3bf0a0
commit be42b587c1
+11
View File
@@ -0,0 +1,11 @@
using xModels.Base;
namespace xPushService.Base
{
public class XHubConnectionDto : XBaseDto
{
public string ConnectionId { get; set; }
public string UserId { get; set; }
public string Username { get; set; }
}
}