https://github.com/shuttle/shuttle.core.specification
Simple specification mechanism.
https://github.com/shuttle/shuttle.core.specification
Last synced: about 1 month ago
JSON representation
Simple specification mechanism.
- Host: GitHub
- URL: https://github.com/shuttle/shuttle.core.specification
- Owner: Shuttle
- License: bsd-3-clause
- Created: 2018-01-03T18:18:01.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2025-02-02T12:08:53.000Z (4 months ago)
- Last Synced: 2025-04-07T11:48:46.979Z (about 1 month ago)
- Language: C#
- Size: 57.6 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Shuttle.Core.Specification
```
PM> Install-Package Shuttle.Core.Specification
```Provides a simple `ISpecification` interface.
A default `Specification` class is available that accepts a function as a callback for scenarios where an explicit `ISpecification` implementation may not be warranted:
``` c#
public Specification(Func function)
```