mirror of
https://github.com/actions/runner.git
synced 2025-12-10 20:36:49 +00:00
9 lines
167 B
C#
9 lines
167 B
C#
// Represents absence of value.
|
|
namespace GitHub.Runner.Common
|
|
{
|
|
public readonly struct Unit
|
|
{
|
|
public static readonly Unit Value = default;
|
|
}
|
|
}
|