- Remove Repositories folder (IUserRepository, UserRepository, IRoleRepository, RoleRepository) - Remove Managers folder (old TenantManager) - Remove Datas folder (old ApplicationDbContext) - Remove Models/Entities folder (old domain entities) - Remove EntityConfigurations folder - Update Services to use UserManager/RoleManager/PlatformDbContext directly - Update DTOs to use Platform's TenantStatus
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; }
|
|
}
|