Class DeleteProjectResponse
Response from project deletion.
public record DeleteProjectResponse : IEquatable<DeleteProjectResponse>
- Inheritance
-
DeleteProjectResponse
- Implements
- Inherited Members
Constructors
DeleteProjectResponse(bool, string?)
Response from project deletion.
public DeleteProjectResponse(bool Success, string? Error = null)
Parameters
Properties
Error
Error message if deletion failed.
public string? Error { get; init; }
Property Value
Success
Whether deletion succeeded.
public bool Success { get; init; }