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

14 lines
260 B
C#
Raw Normal View History

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