Files
Umbraco-CMS/src/Umbraco.PublishedCache.NuCache/Snap/GenRef.cs
Nikolaj Geisle 29961d40a3 V10: fix build warnings nucache (#12500)
* Run code cleanup

* Finish dotnet format and manual cleanup

* Fix according to review

Co-authored-by: Zeegaan <nge@umbraco.dk>
2022-06-20 09:21:08 +02:00

11 lines
210 B
C#

namespace Umbraco.Cms.Infrastructure.PublishedCache.Snap;
internal class GenRef
{
public readonly GenObj GenObj;
public GenRef(GenObj genObj) => GenObj = genObj;
public long Gen => GenObj.Gen;
}