ZibStack.NET.Dto 2.5.0

dotnet add package ZibStack.NET.Dto --version 2.5.0
                    
NuGet\Install-Package ZibStack.NET.Dto -Version 2.5.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ZibStack.NET.Dto" Version="2.5.0">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ZibStack.NET.Dto" Version="2.5.0" />
                    
Directory.Packages.props
<PackageReference Include="ZibStack.NET.Dto">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ZibStack.NET.Dto --version 2.5.0
                    
#r "nuget: ZibStack.NET.Dto, 2.5.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package ZibStack.NET.Dto@2.5.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ZibStack.NET.Dto&version=2.5.0
                    
Install as a Cake Addin
#tool nuget:?package=ZibStack.NET.Dto&version=2.5.0
                    
Install as a Cake Tool

ZibStack.NET.Dto

Source generator that produces strongly-typed CRUD DTOs and full API endpoints from your domain models — no reflection, no runtime overhead.

Install

dotnet add package ZibStack.NET.Dto

Quick Start

[CrudApi]
public class Player
{
    [DtoIgnore(DtoTarget.Create | DtoTarget.Update | DtoTarget.Query)]
    public int Id { get; set; }
    public required string Name { get; set; }
    public int Level { get; set; }
}

// Program.cs
app.MapPlayerEndpoints(); // full CRUD API — auto-generates DTOs + endpoints

Documentation

Full documentation: mistykuu.github.io/ZibStack.NET/packages/dto/

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.5.0 0 4/15/2026
2.4.0 3 4/15/2026
2.3.1 30 4/14/2026
2.3.0 45 4/14/2026
2.2.4 35 4/14/2026
2.2.3 34 4/14/2026
2.2.2 34 4/14/2026
2.2.1 38 4/14/2026
2.2.0 31 4/14/2026
2.1.4 40 4/12/2026
2.1.3 44 4/12/2026
2.1.2 35 4/12/2026
2.1.1 36 4/12/2026
2.1.0 46 4/11/2026
2.0.8 46 4/11/2026
2.0.7 40 4/11/2026
2.0.6 45 4/10/2026
2.0.5 37 4/10/2026
2.0.3 37 4/10/2026
2.0.2 61 4/10/2026
Loading failed