mirror of https://github.com/dapr/quickstarts.git
11 lines
359 B
C#
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;}
|
|
}
|
|
} |