Renamed the project to Umbraco.PublishedCache.NuCache - and move non NuCache related stuff to abstractions and infrastructure.
This commit is contained in:
13
src/Umbraco.PublishedCache.NuCache/Snap/GenRef.cs
Normal file
13
src/Umbraco.PublishedCache.NuCache/Snap/GenRef.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace Umbraco.Web.PublishedCache.NuCache.Snap
|
||||
{
|
||||
internal class GenRef
|
||||
{
|
||||
public GenRef(GenObj genObj)
|
||||
{
|
||||
GenObj = genObj;
|
||||
}
|
||||
|
||||
public readonly GenObj GenObj;
|
||||
public long Gen => GenObj.Gen;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user