Files
runner/src/Runner.Common/Unit.cs
T

9 lines
167 B
C#
Raw Normal View History

2023-06-02 21:47:59 +02:00
// Represents absence of value.
namespace GitHub.Runner.Common
{
public readonly struct Unit
{
public static readonly Unit Value = default;
}
2023-06-02 21:47:59 +02:00
}