Skip to content

Instantly share code, notes, and snippets.

@karthikeyanVK
Created February 14, 2020 19:02
Show Gist options
  • Save karthikeyanVK/dd31b0a23aa9ac7c1c6e98e8fe607236 to your computer and use it in GitHub Desktop.
Save karthikeyanVK/dd31b0a23aa9ac7c1c6e98e8fe607236 to your computer and use it in GitHub Desktop.
using System;
namespace PetShop.Model
{
public class OrderedProduct
{
public Guid ProductId;
public int OrderedProductQuantity { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment