mirror of https://github.com/abpframework/abp.git
1 changed files with 14 additions and 0 deletions
@ -0,0 +1,14 @@ |
|||
using System; |
|||
using Volo.Abp.Domain.Entities.Events.Distributed; |
|||
using Volo.Abp.EventBus; |
|||
|
|||
namespace Volo.Abp.MultiTenancy; |
|||
|
|||
[Serializable] |
|||
[EventName("abp.multi_tenancy.create.tenant")] |
|||
public class CreateTenantEto : EtoBase |
|||
{ |
|||
public string Name { get; set; } = default!; |
|||
|
|||
public string AdminEmailAddress { get; set; } = default!; |
|||
} |
|||
Loading…
Reference in new issue