CSharp-Single-EFCore/Bunny.Generate/ServerTemplate/IService.tt

10 lines
226 B
Plaintext
Raw Normal View History

<#@ template hostspecific="true" language="C#" #>
<#@ output extension=".cs" encoding="utf-8" #>
<#@ include file="./BaseConstants.tt" #>
namespace Bunny.Service.IService;
public interface I<#= serviceName #>Service
{
}