Class GetProjectsStatusResponse
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
ProjectsIReadOnlyList<ProjectStatusDto>List of project statuses.
SortFieldstringField used for sorting.
SortDirectionstringSort direction (Ascending/Descending).
Properties
Projects
List of project statuses.
public IReadOnlyList<ProjectStatusDto> Projects { get; init; }
Property Value
SortDirection
Sort direction (Ascending/Descending).
public string SortDirection { get; init; }
Property Value
SortField
Field used for sorting.
public string SortField { get; init; }