Api/Netina.Core/Abstracts/IExternalFilesService.cs

9 lines
274 B
C#
Raw Normal View History

2024-04-16 20:01:34 +03:30
using Netina.Common.Models;
using Netina.Domain.Dtos.ResponseDtos;
namespace Netina.Core.Abstracts;
public interface IExternalFilesService : IScopedDependency
{
Task<AdminChangeLogResponseDto> GetAdminChangeLogAsync(CancellationToken cancellationToken = default);
}