CosmicWorks.Models
2.3.1
dotnet add package CosmicWorks.Models --version 2.3.1
NuGet\Install-Package CosmicWorks.Models -Version 2.3.1
<PackageReference Include="CosmicWorks.Models" Version="2.3.1" />
paket add CosmicWorks.Models --version 2.3.1
#r "nuget: CosmicWorks.Models, 2.3.1"
// Install CosmicWorks.Models as a Cake Addin #addin nuget:?package=CosmicWorks.Models&version=2.3.1 // Install CosmicWorks.Models as a Cake Tool #tool nuget:?package=CosmicWorks.Models&version=2.3.1
CosmicWorks.Models
models library
CosmicWorks is an open source set of tools and libraries to generate data quickly for your proof of concept or sample applications.
Overview
Contains model classes for various items created by other CosmicWorks tools.
💡 The CosmicWorks sample data is partially derived from AdventureWorksLT.
Data schemas
Here's schemas for the data generated by using this tool:
Employees
classDiagram
direction RL
Employee "1" --o "1" Name
Employee "1" --o "0..*" Address
class Employee {
+Name name
+List~Address~ addresses
+string company$
+string department$
+string emailAddress
+string phoneNumber
+string territory$
+string type
}
class Name {
+string first
+string last
}
class Address {
+string name
+string street
+string city
+string state
+string zipCode
+string type
}
Products
classDiagram
direction RL
Product "1" --* "1" Category
Category "1" --* "0..1" Category
class Product {
+string name
+string description
+Category category
+string sku
+List~string~ tags
+decimal price
+string type
}
class Category {
+string name$
+Category subCategory
}
Related
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 (2)
Showing the top 2 NuGet packages that depend on CosmicWorks.Models:
Package | Downloads |
---|---|
CosmicWorks.Data
Library that generates fictiuous data with multiple schemas. |
|
CosmicWorks.Generator
Library that generates fictiuous data and populate an Azure Cosmos DB for NoSQL account with the data. |
GitHub repositories
This package is not used by any popular GitHub repositories.