mirror of
https://github.com/AlexMacocian/WpfExtended.git
synced 2026-07-24 12:06:29 +00:00
8 lines
164 B
C#
8 lines
164 B
C#
namespace System.Extensions.Templates
|
|
{
|
|
internal abstract class AbstractTemplate
|
|
{
|
|
public abstract void Generate(CodeWriter codeWriter);
|
|
}
|
|
}
|