using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Protobuf
{
///
/// Represents a protobuf compiler result.
///
public interface ICompilerResult
{
///
/// Saves the result to the specified folder.
///
/// The folder.
void Save(String folder);
///
/// Gets the result language.
///
CompilerLanguage Language { get; }
///
/// Gets the result name.
///
String Name { get ; }
///
/// Gets the result source path.
///
String SourcePath { get; }
}
}