Files
rdp-proxy/clients/windows/src/RemoteAccessPlatform.Windows.Contracts/IBackendResourceClient.cs
T
2026-04-28 22:29:50 +03:00

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);
}