Persilsoft.Shared
1.0.2
dotnet add package Persilsoft.Shared --version 1.0.2
NuGet\Install-Package Persilsoft.Shared -Version 1.0.2
<PackageReference Include="Persilsoft.Shared" Version="1.0.2" />
paket add Persilsoft.Shared --version 1.0.2
#r "nuget: Persilsoft.Shared, 1.0.2"
// Install Persilsoft.Shared as a Cake Addin #addin nuget:?package=Persilsoft.Shared&version=1.0.2 // Install Persilsoft.Shared as a Cake Tool #tool nuget:?package=Persilsoft.Shared&version=1.0.2
Persilsoft.Shared.Dtos
This package contains some shared utility DTOs for a backend or frontend project.
Example
The PaginationCriteria DTO is useful in any situation where you need to specify pagination criteria, such as in database queries.
public class PaginationCriteria(string sortColumn, bool sortByAscending, int skip, int take)
{
public string SortColumn => sortColumn;
public bool SortByAscending => sortByAscending;
public int Skip => skip;
public int Take => take;
}
The PaginationResponse<T> DTO can be used to represent a paginated response where a list of items (Items) corresponding to the current page and the total number of items (TotalCount) in the complete collection are included.
public class PaginationResponse<T>(List<T> items, int totalCount)
{
public List<T> Items => items;
public int TotalCount => totalCount;
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- No dependencies.
NuGet packages (4)
Showing the top 4 NuGet packages that depend on Persilsoft.Shared:
Package | Downloads |
---|---|
Persilsoft.Membership.Shared
Contains basic classes and interfaces for use in backend and frontend membership projects. |
|
Persilsoft.HttpDelegatingHandlers
Provides an exception handler for HTTP requests. |
|
Persilsoft.ExceptionHandler.Blazor
Contains Razor components to manage exceptions in Blazor Apps |
|
Persilsoft.Frontend.Core
Some basic types for frontend projects |
GitHub repositories
This package is not used by any popular GitHub repositories.