Skip to content

Instantly share code, notes, and snippets.

@islaytitans
Created July 29, 2015 12:09
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 islaytitans/d7409f7576b8f1ac0211 to your computer and use it in GitHub Desktop.
Save islaytitans/d7409f7576b8f1ac0211 to your computer and use it in GitHub Desktop.
Sitecore Hackathon FieldModel
namespace DevToolKit.Models
{
public class FieldModel
{
public string Id { get; set; }
public string Name { get; set; }
public string Value { get; set; }
public string StandardValue { get; set; }
public string TemplateName { get; set; }
public string TemplateId{ get; set; }
public bool StandardField { get; set; }
public bool RevertToStandardValue { get; set; }
public int SortOrder { get; set; }
public int SectionSortOrder { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment