Msm.Workflow.Lib.Domain 1.3.0

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

Msm.Workflow.Lib.Domain

Domain layer cho MSM Workflow Engine - chứa business entities, interfaces, enums và constants.

📦 Installation

<PackageReference Include="Msm.Workflow.Lib.Domain" Version="1.0.0" />
dotnet add package Msm.Workflow.Lib.Domain

📋 Overview

Package này chứa core domain logic của workflow engine, không có dependencies bên ngoài. Đây là foundation layer cho toàn bộ hệ thống.

Contents

  • Entities: Domain entities như WorkflowProcess, WorkflowStep, WorkflowInstance, etc.
  • Enums: Workflow enums như WorkflowStepType, WorkflowBehavior, WorkflowInstanceStatus, etc.
  • Interfaces: Core interfaces như ITenantProvider
  • Constants: Domain constants như ApproverTypeConstants, WorkflowActionTypeConstants

🎯 Usage

Entities

using Msm.Workflow.Lib.Domain.Entities.Workflow;

var process = new WorkflowProcess
{
    Id = Guid.NewGuid(),
    Name = "Purchase Order Approval",
    Code = "PO_APPROVAL"
};

Enums

using Msm.Workflow.Lib.Domain.Enums;

var stepType = WorkflowStepType.Approval;
var behavior = WorkflowBehavior.AllMustApprove;
var status = WorkflowInstanceStatus.Pending;

Constants

using Msm.Workflow.Lib.Domain.Constants;

var approverType = ApproverTypeConstants.Role;
var actionType = WorkflowActionTypeConstants.EmailAlert;

🔗 Dependencies

None - This package has no external dependencies. It's a pure domain layer.

  • Msm.Workflow.Lib.Application - Uses this package for business logic
  • Msm.Workflow.Lib.Infrastructure - Uses this package for data access
  • Msm.Workflow.Lib.Api.Controllers - Uses this package for API endpoints

📖 Documentation

For more information, see the main README.md and ARCHITECTURE.md.

Product 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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  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.
  • net10.0

    • No dependencies.
  • net8.0

    • No dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Msm.Workflow.Lib.Domain:

Package Downloads
Msm.Workflow.Lib.Infrastructure

Infrastructure layer for MSM Workflow Engine including Entity Framework Core DbContext, configurations, and database access. Requires Msm.Workflow.Lib.Domain.

Msm.Workflow.Lib.Application

Application layer for MSM Workflow Engine containing business logic, services, and DTOs. Requires Msm.Workflow.Lib.Domain and Msm.Workflow.Lib.Infrastructure.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.9.2 241 4/6/2026
1.9.1 141 4/6/2026
1.9.0 239 3/5/2026
1.8.0 153 3/2/2026
1.6.0 167 1/11/2026
1.5.0 168 1/11/2026
1.4.0 158 1/11/2026
1.3.0 161 1/9/2026
1.2.0 158 1/7/2026
1.1.0 156 1/6/2026
1.0.0 135 1/6/2026