8 lines
163 B
C#
8 lines
163 B
C#
|
|
// Represents absence of value.
|
||
|
|
namespace GitHub.Runner.Common
|
||
|
|
{
|
||
|
|
public readonly struct Unit
|
||
|
|
{
|
||
|
|
public static readonly Unit Value = default;
|
||
|
|
}
|
||
|
|
}
|