KamiSama.Modules.Ticketing.Abstractions 10.0.11.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package KamiSama.Modules.Ticketing.Abstractions --version 10.0.11.2
                    
NuGet\Install-Package KamiSama.Modules.Ticketing.Abstractions -Version 10.0.11.2
                    
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="KamiSama.Modules.Ticketing.Abstractions" Version="10.0.11.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="KamiSama.Modules.Ticketing.Abstractions" Version="10.0.11.2" />
                    
Directory.Packages.props
<PackageReference Include="KamiSama.Modules.Ticketing.Abstractions" />
                    
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 KamiSama.Modules.Ticketing.Abstractions --version 10.0.11.2
                    
#r "nuget: KamiSama.Modules.Ticketing.Abstractions, 10.0.11.2"
                    
#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 KamiSama.Modules.Ticketing.Abstractions@10.0.11.2
                    
#: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=KamiSama.Modules.Ticketing.Abstractions&version=10.0.11.2
                    
Install as a Cake Addin
#tool nuget:?package=KamiSama.Modules.Ticketing.Abstractions&version=10.0.11.2
                    
Install as a Cake Tool

KamiSama.Modules.Ticketing.Abstractions

Back to package index

Version: 10.0.0

Description

Provider-neutral Ticketing feature contracts, requests, DTOs, search models, statuses, priorities, and comment sides. Reference this package from callers or alternative implementations that should not depend on EF Core, ASP.NET Core module setup, or a database provider.

How to use

dotnet add package KamiSama.Modules.Ticketing.Abstractions --version 10.0.0

Publication mismatch: 10.0.0 in the required install command is the current workspace/root documentation version. NuGet exposed 10.0.11 as the latest package when this surface was reviewed; 10.0.0 itself was not available.

Inject only the Ticketing feature contracts needed by an application service or controller after a concrete implementation has registered them:

using KamiSama.Extensions.Paging;
using KamiSama.Modules.Ticketing.Features.Tickets;

public sealed class TicketsController(IListTickets listTickets, IFindTicketById findTicket)
{
    public Task<PagedResult<TicketListItemDto>> ListAsync(Guid authorId, CancellationToken token)
        => listTickets.ListAsync(
            new TicketSearchModel(1, 20, null, null, authorId, [TicketStatus.Open], null, "updatedat"),
            token);

    public Task<TicketDto> FindAsync(Guid id, CancellationToken token)
        => findTicket.FindByIdAsync(id, token);
}

This package contains contracts and data shapes only: it registers no services, controllers, endpoints, persistence, content storage, validation pipeline, authentication, or authorization. Alternative implementations define query and mutation semantics. Current Core permits unchanged ticket status, open or reopened to resolved, and resolved to reopened or closed; invalid transitions produce HTTP 409. Core ignores TicketSearchModel.TicketCategoryId; its comment update accepts both a method key and UpdateTicketCommentRequest.CommentId but uses only the request identifier. Treat request author identifiers and comment sides as untrusted input at an authenticated endpoint boundary.

Namespaces

Types

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on KamiSama.Modules.Ticketing.Abstractions:

Package Downloads
KamiSama.Modules.Ticketing.Core

ASP.NET Core Ticketing implementation with EF Core entities, validated ticket workflows, repositories, scoped features, modular registration, and startup database initialization.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.0.11.9 110 8/24/2026
10.0.11.8 124 8/22/2026
10.0.11.7 131 8/21/2026
10.0.11.6 121 8/19/2026
10.0.11.5 116 8/18/2026
10.0.11.4 124 8/18/2026
10.0.11.3 111 8/18/2026
10.0.11.2 119 8/18/2026
10.0.11.1 120 8/15/2026
10.0.11 120 8/11/2026
10.0.10.2 118 8/4/2026