This commit is contained in:
2026-05-28 11:38:42 +03:30
parent 8ebcf3c809
commit 042f3eb812
2 changed files with 71 additions and 1 deletions
+8 -1
View File
@@ -1,6 +1,8 @@
using System;
using System.Collections;
using System.Threading;
using System.Threading.Tasks;
using xDataService.Models;
using xIdentityModels.Models;
namespace xIdentityService.Interfaces
@@ -76,6 +78,11 @@ namespace xIdentityService.Interfaces
XUserClaimsInfoDto userInfo = null,
string connectionId = null,
CancellationToken cancellationToken = default
);
);
Task<IEnumerable<XReference<string>>> GetReferences(
Guid id,
);
}
}