Skip to content

Instantly share code, notes, and snippets.

@evgomes
Created February 4, 2019 22:09
Show Gist options
  • Save evgomes/efbb79b4830c39a4d8ea33b1c6945d2e to your computer and use it in GitHub Desktop.
Save evgomes/efbb79b4830c39a4d8ea33b1c6945d2e to your computer and use it in GitHub Desktop.
ProductResource from Supermarket API
namespace Supermarket.API.Resources
{
public class ProductResource
{
public int Id { get; set; }
public string Name { get; set; }
public int QuantityInPackage { get; set; }
public string UnitOfMeasurement { get; set; }
public CategoryResource Category {get;set;}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment