using System; using Volo.Abp.Application.Dtos; using Volo.Abp.Application.Services; namespace Kurs.Languages; public interface ILanguageKeyAppService : ICrudAppService< LanguageKeyDto, Guid, PagedAndSortedResultRequestDto> { }