erp-platform/api/modules/Kurs.Languages/Kurs.Languages.Application.Contracts/ILanguageKeyAppService.cs

14 lines
245 B
C#
Raw Normal View History

2025-05-06 06:45:49 +00:00
using System;
using Volo.Abp.Application.Dtos;
using Volo.Abp.Application.Services;
namespace Kurs.Languages;
public interface ILanguageKeyAppService : ICrudAppService<
LanguageKeyDto,
Guid,
PagedAndSortedResultRequestDto>
{
}