This file contains 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
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