mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:16:30 +00:00
d92da6afa4
notifying client of AI model conversion
9 lines
213 B
C#
9 lines
213 B
C#
using Azaion.CommonSecurity.DTO.Commands;
|
|
|
|
namespace Azaion.CommonSecurity.Services;
|
|
|
|
public interface IResourceLoader
|
|
{
|
|
MemoryStream LoadFile(string fileName, string? folder, TimeSpan? timeout = null);
|
|
}
|