11 lines
303 B
C#
Raw Permalink Normal View History

2019-10-02 14:36:31 +02:00
using System.Collections.Generic;
namespace CapnpC.CSharp.MsBuild.Generation
{
public class CapnpGenJob
{
public string CapnpPath { get; set; }
public string WorkingDirectory { get; set; }
public List<string> AdditionalArguments { get; } = new List<string>();
}
}