CosmicWorks.Models 2.1.0

dotnet add package CosmicWorks.Models --version 2.1.0
NuGet\Install-Package CosmicWorks.Models -Version 2.1.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="CosmicWorks.Models" Version="2.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CosmicWorks.Models --version 2.1.0
#r "nuget: CosmicWorks.Models, 2.1.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.
// Install CosmicWorks.Models as a Cake Addin
#addin nuget:?package=CosmicWorks.Models&version=2.1.0

// Install CosmicWorks.Models as a Cake Tool
#tool nuget:?package=CosmicWorks.Models&version=2.1.0

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
    }
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.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.

Version Downloads Last updated
2.1.0 104 4/9/2024
2.0.3 280 8/30/2023