erp-platform/api/modules/Erp.Languages/Erp.Languages.Application.Contracts/ILanguageKeyAppService.cs
2025-11-11 22:49:52 +03:00

14 lines
245 B
C#

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