// ------------------------------------------------------------ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. // ------------------------------------------------------------ namespace Subtract.Models { public class Operands { public string OperandOne { get; set;} public string OperandTwo { get; set;} } }