Created
June 4, 2015 21:18
-
-
Save micklaw/2067c6c268d7aa03eb97 to your computer and use it in GitHub Desktop.
ArchetypePOCO
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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