Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Last active October 21, 2020 22:04
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/bf3f357c23285c5d6569bfea67e6d41c to your computer and use it in GitHub Desktop.
Save dcomartin/bf3f357c23285c5d6569bfea67e6d41c to your computer and use it in GitHub Desktop.
using System;
namespace Sales
{
public class ProductModel
{
public Guid Id { get; set; }
public decimal Price { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment