Last active
December 10, 2015 00:59
-
-
Save MikeLarned/4355083 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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