9 lines
274 B
C#
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);
|
|||
|
|
}
|