All checks were successful
Run the JSON parser tests / test (push) Has been skipped
11 lines
219 B
C#
11 lines
219 B
C#
namespace Jtr.Tools;
|
|
|
|
public static partial class Json2CSharpTranslator
|
|
{
|
|
public interface ITranslation
|
|
{
|
|
public string Name { get; }
|
|
|
|
public void Translate(Context context);
|
|
}
|
|
} |