SamplesV1/ADFCustomActivityRunner/DotNetActivityRunner/Models/Table.cs (9 lines of code) (raw):
using Newtonsoft.Json;
namespace Microsoft.ADF.DotNetActivityRunner.Models
{
internal class Table
{
[JsonProperty("properties")]
internal TableProperties Properties { get; set; }
}
}