Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created October 21, 2020 22: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/8e2c22c3e32ae0aa84c3a5e437c2f0aa to your computer and use it in GitHub Desktop.
Save dcomartin/8e2c22c3e32ae0aa84c3a5e437c2f0aa to your computer and use it in GitHub Desktop.
using System;
namespace Catalog
{
public class ProductModel
{
public Guid Id { get; set; }
public string Name { get; set; }
public decimal Cost { get; set; }
public int Quantity { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment