13 lines
393 B
C#
13 lines
393 B
C#
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; }
|
|
}
|