pschelpdesk/Vendor/Prise.Tests.Integration/Prise.IntegrationTestsContract/ComplexCalculationContext.cs
2024-11-04 20:45:34 +01:00

10 lines
279 B
C#

using System;
namespace Prise.IntegrationTestsContract
{
// Plugin Parameter types are not required to be serializable, Newtonsoft JSON takes care of this
public class ComplexCalculationContext
{
public CalculationContext[] Calculations { get; set; }
}
}