Files
Umbraco-CMS/src/Umbraco.PublishedCache.NuCache/Snap/GenRef.cs

14 lines
267 B
C#
Raw Normal View History

namespace Umbraco.Cms.Infrastructure.PublishedCache.Snap
2019-02-22 16:03:39 +01:00
{
internal class GenRef
{
public GenRef(GenObj genObj)
{
GenObj = genObj;
}
public readonly GenObj GenObj;
public long Gen => GenObj.Gen;
}
}