-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7b1c41e
commit 292c8c4
Showing
4 changed files
with
39 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 5 additions & 1 deletion
6
Source/Modules/TenantIdentity/Public/DTOs/Tenant/Operations/ChangeRoleOfTenantMemberDTO.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
namespace Modules.TenantIdentity.Public.DTOs.Tenant.Operations | ||
using Shared.Kernel.DomainKernel; | ||
using System; | ||
|
||
namespace Modules.TenantIdentity.Public.DTOs.Tenant.Operations | ||
{ | ||
public class ChangeRoleOfTenantMemberDTO | ||
{ | ||
public TenantRole Role { get; set; } | ||
} | ||
} |
9 changes: 8 additions & 1 deletion
9
Source/Modules/TenantIdentity/Public/DTOs/Tenant/Operations/InviteUserToTenantDTO.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
namespace Modules.TenantIdentity.Public.DTOs.Tenant.Operations | ||
using Shared.Kernel.DomainKernel; | ||
using System; | ||
using System.Reflection.Metadata.Ecma335; | ||
|
||
namespace Modules.TenantIdentity.Public.DTOs.Tenant.Operations | ||
{ | ||
public class InviteUserToTenantDTO | ||
{ | ||
public Guid TenantId { get; set; } | ||
public Guid UserId { get; set; } | ||
public TenantRole Role { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters