14 lines
245 B
C#
14 lines
245 B
C#
|
|
using System;
|
|||
|
|
using Volo.Abp.Application.Dtos;
|
|||
|
|
using Volo.Abp.Application.Services;
|
|||
|
|
|
|||
|
|
namespace Kurs.Languages;
|
|||
|
|
|
|||
|
|
public interface ILanguageKeyAppService : ICrudAppService<
|
|||
|
|
LanguageKeyDto,
|
|||
|
|
Guid,
|
|||
|
|
PagedAndSortedResultRequestDto>
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|