namespace InnovEnergy.Lib.Utils; public static class NullableUtils { // ReSharper disable once ReturnTypeCanBeNotNullable public static T? AsNullable(this T t) => t; }