pschelpdesk/Vendor/Prise.Tests.Integration/Prise.IntegrationTestsHost/Models/CalculationRequestModel.cs
2024-11-04 20:45:34 +01:00

8 lines
178 B
C#

namespace Prise.IntegrationTestsHost.Models
{
public class CalculationRequestModel
{
public decimal A { get; set; }
public decimal B { get; set; }
}
}