9 lines
270 B
C#
9 lines
270 B
C#
using RemoteAccessPlatform.Windows.Models;
|
|
|
|
namespace RemoteAccessPlatform.Windows.Contracts;
|
|
|
|
public interface IBackendResourceClient
|
|
{
|
|
Task<IReadOnlyList<ResourceDto>> GetResourcesAsync(string userId, string organizationId, CancellationToken cancellationToken);
|
|
}
|