6 lines
210 B
C#
6 lines
210 B
C#
|
|
namespace NetinaShop.Core.Abstracts;
|
|||
|
|
|
|||
|
|
public interface IExternalFilesService : IScopedDependency
|
|||
|
|
{
|
|||
|
|
Task<AdminChangeLogResponseDto> GetAdminChangeLogAsync(CancellationToken cancellationToken = default);
|
|||
|
|
}
|