10 lines
202 B
C#
10 lines
202 B
C#
namespace ReswCodeGen.Core
|
|
{
|
|
public interface ICodeGenerator
|
|
{
|
|
string Namespace { get; set; }
|
|
string ReswContent { get; set; }
|
|
string GenerateCode();
|
|
}
|
|
}
|