Initial Commit ...

This commit is contained in:
2024-01-25 04:47:14 +03:30
commit d862146642
37 changed files with 4039 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
using System.Collections.Generic;
using xModels.Base;
namespace xPushService.Models {
public class XPushGroupDto : XBaseStorableDto<string> {
public override string Id { get; set; }
public List<string> Connections { get; set; }
}
}