Created
April 16, 2020 18:33
-
-
Save enisn/9573159bfb5a7b23da1159b6ba824202 to your computer and use it in GitHub Desktop.
Challenge #1 - Problem - Product.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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