1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00

21 lines
373 B
C#
Raw Normal View History

2011-02-12 19:47:18 +01:00
/*
Copyright 2010,2011 Kevin Glynn (kevin.glynn@twigletsoftware.com)
*/
2011-02-12 19:47:18 +01:00
using System;
namespace Twiglet.CS2J.Translator
{
public class Templates
{
private static string _javaTemplateGroup = @"
Nothing to see here
";
public static string JavaTemplateGroup { get
{ return _javaTemplateGroup; }
}
}
}