erp-platform/api/modules/Kurs.Languages/Kurs.Languages.Application.Contracts/ILanguageKeyAppService.cs
Sedat ÖZTÜRK e1a9562b22 init project
2025-05-06 09:45:49 +03:00

13 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>
{
}