Skip to content

Instantly share code, notes, and snippets.

@sshibani
Created October 13, 2016 12:14
Show Gist options
  • Save sshibani/4a35490e01cdf78f5f3c6d392f9a3dbd to your computer and use it in GitHub Desktop.
Save sshibani/4a35490e01cdf78f5f3c6d392f9a3dbd to your computer and use it in GitHub Desktop.
View model using extended attribute
[ContentModel("product", true)]
public class Product : ViewModelBase
{
[TextField]
public string Title { get; set; }
[ProductPrice(FieldName = "productId")]
public double Price { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment