This commit is contained in:
2026-06-02 23:42:49 +03:30
parent 221442307e
commit 10f5c463db
2 changed files with 77 additions and 0 deletions
+10
View File
@@ -1,6 +1,7 @@
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using xIdentityModels.Models;
using xStringService.Models.Dtos;
namespace xStringService.Interfaces
@@ -51,6 +52,15 @@ namespace xStringService.Interfaces
object identifier,
CancellationToken cancellationToken = default
);
Task<string> AddOrUpdateItemResourcer(
object identifier,
string language,
string translation,
string connectionId = null,
XUserClaimsInfoDto userInfo = null,
CancellationToken cancellationToken = default
);
#endregion
}
}