initial commit

This commit is contained in:
Christian Resma Helle
2012-11-06 23:37:40 +01:00
commit 79fe714b5b
14 changed files with 462 additions and 0 deletions
@@ -0,0 +1,9 @@
namespace ReswCodeGen.Core
{
public interface ICodeGenerator
{
string Namespace { get; set; }
string ReswContent { get; set; }
string GenerateCode();
}
}