Skip to content

Instantly share code, notes, and snippets.

@evgomes
Created January 25, 2019 13:31
Show Gist options
  • Save evgomes/cdd117007f6c1bbc26426bd9a7f26237 to your computer and use it in GitHub Desktop.
Save evgomes/cdd117007f6c1bbc26426bd9a7f26237 to your computer and use it in GitHub Desktop.
Category.cs from Supermarket.API
using System.Collections.Generic;
namespace Supermarket.API.Domain.Models
{
public class Category
{
public int Id { get; set; }
public string Name { get; set; }
public IList<Product> Products { get; set; } = new List<Product>();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment