mirror of
https://github.com/actions/runner.git
synced 2026-01-15 16:03:28 +08:00
15 lines
188 B
C#
15 lines
188 B
C#
using System;
|
|
|
|
namespace GitHub.Actions.Expressions
|
|
{
|
|
public enum ValueKind
|
|
{
|
|
Array,
|
|
Boolean,
|
|
Null,
|
|
Number,
|
|
Object,
|
|
String,
|
|
}
|
|
}
|