mirror of
https://github.com/actions/runner.git
synced 2025-12-12 15:13:30 +00: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,
|
|
}
|
|
}
|