Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created October 21, 2020 22:20
Show Gist options
  • Save dcomartin/c373a57a024a704c3a9f6d39a02361c1 to your computer and use it in GitHub Desktop.
Save dcomartin/c373a57a024a704c3a9f6d39a02361c1 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; }
public int AvailableToPromise { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment