Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created October 20, 2021 21:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcomartin/a694aada77c10ca212b047359fd7eaa0 to your computer and use it in GitHub Desktop.
Save dcomartin/a694aada77c10ca212b047359fd7eaa0 to your computer and use it in GitHub Desktop.
using System;
using ValueObject.Command;
namespace ValueObject
{
public record PlaceOrderCommand(Guid CustomerId, Product Product, int Quantity, Currency Currency);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment