11 lines
287 B
C#
11 lines
287 B
C#
using System;
|
|
|
|
namespace Prise.IntegrationTestsContract
|
|
{
|
|
// Plugin Parameter types are not required to be serializable, Newtonsoft JSON takes care of this
|
|
public class CalculationContext
|
|
{
|
|
public decimal A { get; set; }
|
|
public decimal B { get; set; }
|
|
}
|
|
} |