Skip to content

Instantly share code, notes, and snippets.

@trnktms
Created January 6, 2017 16:19
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 trnktms/e2b320e668cebe06e9cf0b3b8d7394ed to your computer and use it in GitHub Desktop.
Save trnktms/e2b320e668cebe06e9cf0b3b8d7394ed to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using Sitecore.Globalization;
namespace YourProject.Models
{
public interface IGlassBase
{
Guid Id { get; set; }
Language Language { get; }
int Version { get; set; }
IEnumerable<Guid> BaseTemplateIds { get; }
string TemplateName { get; }
Guid TemplateId { get; set; }
string Name { get; set; }
string Url { get; }
string FullPath { get; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment