using System; using System.Threading.Tasks; using Volo.Abp.Application.Dtos; using Volo.Abp.Application.Services; namespace Sanhe.Abp.LocalizationManagement; public interface ILanguageAppService : ICrudAppService< LanguageDto, Guid, GetLanguagesInput, CreateOrUpdateLanguageInput, CreateOrUpdateLanguageInput> { Task> GetAllAsync(); }