6 lines
86 B
C#
6 lines
86 B
C#
namespace Nebula.Shared.Utils;
|
|
|
|
public class Ref<T>
|
|
{
|
|
public T Value = default!;
|
|
} |