Skip to content

Instantly share code, notes, and snippets.

@evgomes
Last active January 25, 2019 13:38
Show Gist options
  • Save evgomes/3789d6b6c728acfef847c6e65e3d96a0 to your computer and use it in GitHub Desktop.
Save evgomes/3789d6b6c728acfef847c6e65e3d96a0 to your computer and use it in GitHub Desktop.
Product class of Supermarket.API
namespace Supermarket.API.Domain.Models
{
public class Product
{
public int Id { get; set; }
public string Name { get; set; }
public short QuantityInPackage { get; set; }
public EUnitOfMeasurement UnitOfMeasurement { get; set; }
public int CategoryId { get; set; }
public Category Category { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment