Skip to content

Instantly share code, notes, and snippets.

@micklaw
Created June 4, 2015 21:18
Show Gist options
  • Save micklaw/2067c6c268d7aa03eb97 to your computer and use it in GitHub Desktop.
Save micklaw/2067c6c268d7aa03eb97 to your computer and use it in GitHub Desktop.
ArchetypePOCO
namespace Ditto.Resolvers.Sample.Models.Archetypes
{
public class PriceList : ArchetypeFieldsetModel
{
public string Title { get; set; }
public int Quantity { get; set; }
public string Price { get; set; }
[TypeConverter(typeof(DittoContentPickerConverter))]
public Content AssociatedPage { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment