13 lines
288 B
Plaintext
13 lines
288 B
Plaintext
<#@ Template Language="C#" HostSpecific="True" Inherits="DynamicTransform" #>
|
|
<#@ Output Extension="cs" #>
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace <#= Model.Namespace #>
|
|
{
|
|
public class <#= Model.ClassName #>
|
|
{
|
|
// Add properties here
|
|
}
|
|
} |