Files
parr_api/PARR.GeneratorTemplates/Services/ITransformService.cs

14 lines
264 B
C#
Raw Normal View History

2023-09-22 15:30:57 +10:00
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);
}
}