Skip to content

Instantly share code, notes, and snippets.

@ChouJustice
Created June 15, 2022 07:43
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/09f5efeed73fa60357e3b1c50ed9bf3f to your computer and use it in GitHub Desktop.
Save ChouJustice/09f5efeed73fa60357e3b1c50ed9bf3f to your computer and use it in GitHub Desktop.
namespace WebCoreLab.Models.ViewModel.Product
{
public class ProductDetailViewModel
{
public ProductData Product { get; set; }
public class ProductData
{
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