Class RespondToJoinRequestByTokenRequest
- Namespace
- Builvero.Api.Controllers
- Assembly
- Builvero.Api.dll
Request model for responding to a project join request using a secure token.
public class RespondToJoinRequestByTokenRequest
- Inheritance
-
RespondToJoinRequestByTokenRequest
- Inherited Members
Properties
Approve
Gets or sets a value indicating whether the join request is approved (true) or declined (false).
public bool Approve { get; set; }
Property Value
- bool
- Request model for responding to a project join request using a secure token.
Reason
Gets or sets an optional reason for approving or declining the join request.
public string? Reason { get; set; }
Property Value
- string
- Request model for responding to a project join request using a secure token.
Token
Gets or sets the secure token from the join request email.
public string Token { get; set; }
Property Value
- string
- Request model for responding to a project join request using a secure token.