Table of Contents

Class GetProjectsStatusResponse

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

Response containing project status list with sorting info.

public record GetProjectsStatusResponse : IEquatable<GetProjectsStatusResponse>
Inheritance
GetProjectsStatusResponse
Implements
Inherited Members

Constructors

GetProjectsStatusResponse(IReadOnlyList<ProjectStatusDto>, string, string)

Response containing project status list with sorting info.

public GetProjectsStatusResponse(IReadOnlyList<ProjectStatusDto> Projects, string SortField, string SortDirection)

Parameters

Projects IReadOnlyList<ProjectStatusDto>

List of project statuses.

SortField string

Field used for sorting.

SortDirection string

Sort direction (Ascending/Descending).

Properties

Projects

List of project statuses.

public IReadOnlyList<ProjectStatusDto> Projects { get; init; }

Property Value

IReadOnlyList<ProjectStatusDto>

SortDirection

Sort direction (Ascending/Descending).

public string SortDirection { get; init; }

Property Value

string

SortField

Field used for sorting.

public string SortField { get; init; }

Property Value

string