mirror of
https://github.com/actions/runner.git
synced 2025-12-11 12:57:05 +00:00
18 lines
299 B
C#
18 lines
299 B
C#
using System.ComponentModel;
|
|
|
|
namespace GitHub.DistributedTask.Expressions
|
|
{
|
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
|
public enum ValueKind
|
|
{
|
|
Array,
|
|
Boolean,
|
|
DateTime,
|
|
Null,
|
|
Number,
|
|
Object,
|
|
String,
|
|
Version,
|
|
}
|
|
}
|