Table of Contents

Class DeleteProjectResponse

Namespace
Ando.Server.Contracts.Projects
Assembly
Ando.Server.dll

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

Success bool

Whether deletion succeeded.

Error string

Error message if deletion failed.

Properties

Error

Error message if deletion failed.

public string? Error { get; init; }

Property Value

string

Success

Whether deletion succeeded.

public bool Success { get; init; }

Property Value

bool