12 lines
249 B
C#
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; }
|
|
}
|
|
}
|
|
|