ITenantAppService.cs 295 B

1234567891011
  1. using BaseService.Systems.TenantManagement.Dto;
  2. using System.Threading.Tasks;
  3. using Volo.Abp.Application.Services;
  4. namespace BaseService.Systems.TenantManagement
  5. {
  6. public interface ITenantAppService : IApplicationService
  7. {
  8. Task UpdateMenu(UpdateTenantMenuDto input);
  9. }
  10. }