Skip to content

Instantly share code, notes, and snippets.

@MikeLarned
Last active December 10, 2015 00:59
Show Gist options
  • Select an option

  • Save MikeLarned/4355083 to your computer and use it in GitHub Desktop.

Select an option

Save MikeLarned/4355083 to your computer and use it in GitHub Desktop.
namespace ExampleTemplateGenerator
{
partial class Entity
{
private readonly string _entityName;
private readonly string _assemblyName;
public Entity(string entityName, string assemblyName)
{
_entityName = entityName;
_assemblyName = assemblyName;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment