Files
runner/src/Sdk/DTObjectTemplating/ObjectTemplating/Schema/PropertyValue.cs
T

19 lines
318 B
C#
Raw Normal View History

2019-10-10 00:52:42 -04:00
using System;
namespace GitHub.DistributedTask.ObjectTemplating.Schema
{
internal sealed class PropertyValue
{
internal PropertyValue()
{
}
internal PropertyValue(String type)
{
Type = type;
}
internal String Type { get; set; }
}
}