quickstarts/3.distributed-calculator/C#/Models/Operands.cs

11 lines
359 B
C#

// ------------------------------------------------------------
// 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;}
}
}