mirror of https://github.com/abpframework/abp.git
1 changed files with 15 additions and 0 deletions
@ -0,0 +1,15 @@ |
|||||
|
using System; |
||||
|
using Volo.Abp.EventBus; |
||||
|
using Volo.Abp.MultiTenancy; |
||||
|
|
||||
|
namespace Volo.Abp.Users; |
||||
|
|
||||
|
[EventName("Volo.Abp.Users.UserPasswordChangeRequested")] |
||||
|
public class UserPasswordChangeRequestedEto : IMultiTenant |
||||
|
{ |
||||
|
public Guid? TenantId { get; set; } |
||||
|
|
||||
|
public string UserName { get; set; } |
||||
|
|
||||
|
public string Password { get; set; } |
||||
|
} |
||||
Loading…
Reference in new issue