Skip to content

Instantly share code, notes, and snippets.

@enisn
Created April 16, 2020 18:33
Show Gist options
  • Save enisn/9573159bfb5a7b23da1159b6ba824202 to your computer and use it in GitHub Desktop.
Save enisn/9573159bfb5a7b23da1159b6ba824202 to your computer and use it in GitHub Desktop.
Challenge #1 - Problem - Product.cs
public class Product
{
public string Id { get; set; }
public string Name { get; set; }
public string Code { get; set; }
public string Description { get; set; }
public decimal Price { get; set; }
public decimal? ShippingPrice { get; set; }
public int Stock { get; set; }
public DateTime CreateDate { get; set; }
public DateTime PublishDate { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment