Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Created November 21, 2019 13:07
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 icebeam7/d8b763fa0e54acaab792c50644b34bec to your computer and use it in GitHub Desktop.
Save icebeam7/d8b763fa0e54acaab792c50644b34bec to your computer and use it in GitHub Desktop.
MVVMDemo: Product.cs
namespace MVVMDemo.Models
{
public class Product
{
public int ID { get; set; }
public string Name { get; set; }
public double Price { get; set; }
public bool IsAvailable { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment