- Remove redundant PointsRule repositories (use single PointsRuleRepository) - Clean up Member migrations and consolidate to single Init migration - Update Console frontend API and components for Tenant - Add H5LinkService for member H5 integration
13 lines
287 B
C#
13 lines
287 B
C#
using Fengling.Platform.Domain.AggregatesModel.TenantAggregate;
|
|
|
|
namespace Fengling.Console.Models.Dtos;
|
|
|
|
public class TenantQueryDto : PaginationQueryDto
|
|
{
|
|
public string? Name { get; set; }
|
|
|
|
public string? TenantId { get; set; }
|
|
|
|
public TenantStatus? Status { get; set; }
|
|
}
|