feat: pivot to social media workflow app
This commit is contained in:
12
backend/Modules/Workspaces/Data/WorkspaceInvite.cs
Normal file
12
backend/Modules/Workspaces/Data/WorkspaceInvite.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace Socialize.Modules.Workspaces.Data;
|
||||
|
||||
public class WorkspaceInvite
|
||||
{
|
||||
public Guid Id { get; init; }
|
||||
public Guid WorkspaceId { get; set; }
|
||||
public required string Email { get; set; }
|
||||
public required string Role { get; set; }
|
||||
public required string Status { get; set; }
|
||||
public Guid InvitedByUserId { get; set; }
|
||||
public DateTimeOffset CreatedAt { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user