jtr/DevDisciples.Json.Tools.API/Requests/JsonPathRequest.cs
mdnapo 82a59eebd2 - Refactored code
- Implemented basic JSON Path interpreter
- Clean up
2024-09-22 16:30:31 +02:00

6 lines
162 B
C#

namespace DevDisciples.Json.Tools.API.Requests;
public class JsonPathRequest : TransformRequest
{
public string Path { get; init; } = string.Empty;
}