mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 14:51:41 +01:00
11 lines
328 B
C#
11 lines
328 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Capnpc.Csharp.MsBuild.Generation
|
|
{
|
|
public class TestGeneratorResult
|
|
{
|
|
public IEnumerable<TestGenerationError> Errors { get; internal set; }
|
|
public bool IsUpToDate { get; internal set; }
|
|
public string GeneratedTestCode { get; internal set; }
|
|
}
|
|
} |