tlang-runtime-compiler/TLang.VM/TLangDependencyResponse.cs

15 lines
296 B
C#
Raw Normal View History

2023-07-29 00:11:09 +00:00
using System.IO;
namespace TLang.VM
{
public class TLangDependencyResponse
{
public bool IgnoreVersion {get;set;}=false;
public Stream Stream {get;set;}=Stream.Null;
public bool DisposeStream {get;set;}=true;
public bool Found {get;set;}=false;
}
}