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

15 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;
2025-11-11 19:49:52 +00:00
namespace Erp.Languages;
2025-05-06 06:45:49 +00:00
public interface ILanguageKeyAppService : ICrudAppService<
LanguageKeyDto,
Guid,
PagedAndSortedResultRequestDto>
{
}
2025-11-11 19:49:52 +00:00