From be42b587c1af20914023037a10983e421866657a Mon Sep 17 00:00:00 2001 From: Hadi Khazaee Asl Date: Fri, 28 Nov 2025 07:52:15 +0330 Subject: [PATCH] add XHubConnectionDto for Storing Available Connection if we need ... --- Base/XHubConnectionDto.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Base/XHubConnectionDto.cs diff --git a/Base/XHubConnectionDto.cs b/Base/XHubConnectionDto.cs new file mode 100644 index 0000000..3812ee3 --- /dev/null +++ b/Base/XHubConnectionDto.cs @@ -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; } + } +} \ No newline at end of file