Last active
December 10, 2015 00:59
-
-
Save MikeLarned/4355108 to your computer and use it in GitHub Desktop.
Basic Runtime template to be used in an application outside of Visual Studio
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
<#@ template language="C#" #> | |
<#@ assembly name="System.Core" #> | |
<#@ import namespace="System.Linq" #> | |
<#@ import namespace="System.Text" #> | |
<#@ import namespace="System.Collections.Generic" #> | |
using System; | |
namespace <#= _assemblyName #>.Infrastructure.Entities | |
{ | |
public class <#= _entityName #> | |
{ | |
public Guid Id { get; set; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment