2023-02-16 12:57:06 +00:00
|
|
|
namespace InnovEnergy.Lib.Utils;
|
|
|
|
|
|
|
|
public static class NullableUtils
|
|
|
|
{
|
2023-09-14 12:24:06 +00:00
|
|
|
// ReSharper disable once ReturnTypeCanBeNotNullable
|
|
|
|
public static T? AsNullable<T>(this T t) => t;
|
2023-02-16 12:57:06 +00:00
|
|
|
|
|
|
|
}
|