add some new features in data service ...

This commit is contained in:
2026-05-15 19:41:43 +03:30
parent 35e1e08d50
commit f929414b9f
15 changed files with 1826 additions and 34 deletions
+11
View File
@@ -0,0 +1,11 @@
using xModels.Base;
namespace xPushService.Models
{
public class XHubConnectionDto : XBaseDto
{
public string ConnectionId { get; set; }
public string UserId { get; set; }
public string Username { get; set; }
}
}