Api/Netina.Core/Abstracts/IExternalFilesService.cs

9 lines
274 B
C#

using Netina.Common.Models;
using Netina.Domain.Dtos.ResponseDtos;
namespace Netina.Core.Abstracts;
public interface IExternalFilesService : IScopedDependency
{
Task<AdminChangeLogResponseDto> GetAdminChangeLogAsync(CancellationToken cancellationToken = default);
}