Files
parr_api/PARR.GeneratorTemplates/Services/ITransformService.cs
Mikhail Trubnikov 6c3ac936a1 DeactivateTemplates
2023-09-22 15:30:57 +10:00

14 lines
264 B
C#

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);
}
}