Files
parr_api/PARR.Core/Common/Interfaces/ITransformService.cs

8 lines
140 B
C#

namespace PARR.Core.Common.Interfaces
{
public interface ITransformService
{
T? GetModelFromJson<T>(string str);
}
}