Skip to content

Instantly share code, notes, and snippets.

@evgomes
Created January 28, 2019 13:24
Show Gist options
  • Save evgomes/8593b7f2c0e7d523b57f244a69c62bed to your computer and use it in GitHub Desktop.
Save evgomes/8593b7f2c0e7d523b57f244a69c62bed to your computer and use it in GitHub Desktop.
CategoryResource, from Supermarket API
namespace Supermarket.API.Resources
{
public class CategoryResource
{
public int Id { get; set; }
public string Name { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment