Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created October 21, 2020 21:45
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/6d84a9c0a7bb7fa69c8d23754e1cf4f4 to your computer and use it in GitHub Desktop.
Save dcomartin/6d84a9c0a7bb7fa69c8d23754e1cf4f4 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 Price { 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