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