Skip to content

Instantly share code, notes, and snippets.

@ChouJustice
Created June 15, 2022 08:04
Embed
What would you like to do?
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