2024-06-06 13:26:40 +03:30
|
|
|
|
namespace Netina.Core.Abstracts;
|
2024-02-25 18:21:01 +03:30
|
|
|
|
|
|
|
|
|
|
public interface IExternalFilesService : IScopedDependency
|
|
|
|
|
|
{
|
|
|
|
|
|
Task<AdminChangeLogResponseDto> GetAdminChangeLogAsync(CancellationToken cancellationToken = default);
|
|
|
|
|
|
}
|