Skip to content

Instantly share code, notes, and snippets.

@Defcoq
Created June 6, 2021 12:58
Show Gist options
  • Save Defcoq/8c78c67825807fdbcdb99303e5d8b666 to your computer and use it in GitHub Desktop.
Save Defcoq/8c78c67825807fdbcdb99303e5d8b666 to your computer and use it in GitHub Desktop.
public class ProductViewModel
{
public int ProductId { get; set; }
public string Name { get; set; }
public string RRP { get; set; }
public string SellingPrice { get; set; }
public string Discount { get; set; }
public string Savings { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment