BMC/BCS.BMC/src/BCS.BMC.Application/MultiTenancy/Dto/PagedTenantResultRequestDto.cs
2022-10-10 20:44:01 +05:30

12 lines
249 B
C#

using Abp.Application.Services.Dto;
namespace BCS.BMC.MultiTenancy.Dto
{
public class PagedTenantResultRequestDto : PagedResultRequestDto
{
public string Keyword { get; set; }
public bool? IsActive { get; set; }
}
}