mirror of
https://github.com/actions/runner.git
synced 2025-12-11 12:57:05 +00:00
19 lines
318 B
C#
19 lines
318 B
C#
using System;
|
|
|
|
namespace GitHub.DistributedTask.ObjectTemplating.Schema
|
|
{
|
|
internal sealed class PropertyValue
|
|
{
|
|
internal PropertyValue()
|
|
{
|
|
}
|
|
|
|
internal PropertyValue(String type)
|
|
{
|
|
Type = type;
|
|
}
|
|
|
|
internal String Type { get; set; }
|
|
}
|
|
}
|