Skip to content

Instantly share code, notes, and snippets.

@ChouJustice
Created June 15, 2022 08:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChouJustice/6102694404a2a0a2707f5f63e9981b9c to your computer and use it in GitHub Desktop.
Save ChouJustice/6102694404a2a0a2707f5f63e9981b9c to your computer and use it in GitHub Desktop.
namespace WebCoreLab.Models.DTO.Product
{
public class ProductDTO
{
public int Id { get; set; }
public string Name { get; set; }
public decimal Price { get; set; }
public string Description { get; set; }
public string Image { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment