DeactivateTemplates

This commit is contained in:
Mikhail Trubnikov
2023-09-22 15:30:57 +10:00
parent 872bc942a8
commit 6c3ac936a1
12 changed files with 252 additions and 21 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PARR.GeneratorTemplates.Services
{
internal interface ITransformService
{
T? GetModelFromJson<T>(string str);
}
}