PagedTenantResultRequestDto.cs 237 B

123456789
  1. using Abp.Application.Services.Dto;
  2. namespace VberZero.AppService.MultiTenancy.Dto;
  3. public class PagedTenantResultRequestDto : PagedResultRequestDto
  4. {
  5. public string Keyword { get; set; }
  6. public bool? IsActive { get; set; }
  7. }