sozsoft-platform/api/modules/Sozsoft.Languages/Sozsoft.Languages.Application.Contracts/ILanguageKeyAppService.cs

15 lines
249 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
using System;
using Volo.Abp.Application.Dtos;
using Volo.Abp.Application.Services;
namespace Sozsoft.Languages;
public interface ILanguageKeyAppService : ICrudAppService<
LanguageKeyDto,
Guid,
PagedAndSortedResultRequestDto>
{
}