Browse Source

fix(identity): add missing session synchronizer usings

pull/1496/head
zhang 2 months ago
parent
commit
2cbfc05810
  1. 8
      aspnet-core/modules/identity/LINGYUN.Abp.Identity.Domain/LINGYUN/Abp/Identity/Session/IdentitySessionUserInactiveSynchronizer.cs

8
aspnet-core/modules/identity/LINGYUN.Abp.Identity.Domain/LINGYUN/Abp/Identity/Session/IdentitySessionUserInactiveSynchronizer.cs

@ -1,4 +1,10 @@
namespace LINGYUN.Abp.Identity.Session; using System.Threading.Tasks;
using Volo.Abp.DependencyInjection;
using Volo.Abp.Domain.Entities.Events.Distributed;
using Volo.Abp.EventBus.Distributed;
using Volo.Abp.Uow;
namespace LINGYUN.Abp.Identity.Session;
public class IdentitySessionUserInactiveSynchronizer : public class IdentitySessionUserInactiveSynchronizer :
IDistributedEventHandler<EntityCreatedEto<IdentitySessionEto>>, IDistributedEventHandler<EntityCreatedEto<IdentitySessionEto>>,

Loading…
Cancel
Save