Skip to content

Instantly share code, notes, and snippets.

@5up3rman
Last active October 12, 2016 13:00
Show Gist options
  • Save 5up3rman/97e741cffc88191d3a932d583ea39c94 to your computer and use it in GitHub Desktop.
Save 5up3rman/97e741cffc88191d3a932d583ea39c94 to your computer and use it in GitHub Desktop.
Mapped Item
public enum MappedItemType { Section, Field }
public class MappedItem
{
public MappedItemType Type { get; set; }
public string OriginalName { get; set; }
public string NewTitle { get; set; }
public string ShortDescription { get; set; }
public bool Hide { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment