mirror of https://github.com/abpframework/abp.git
committed by
GitHub
2 changed files with 18 additions and 2 deletions
@ -0,0 +1,16 @@ |
|||
using System; |
|||
using Volo.Abp.EventBus; |
|||
using Volo.Abp.MultiTenancy; |
|||
|
|||
namespace Volo.Abp.Users; |
|||
|
|||
[Serializable] |
|||
[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