Files
PWAPP/PWAPPv2/Source/DataObjects/NumValPair.cs
Matthew Burke 1b65e9bb83 Lots of updates
2023-07-26 22:26:54 -04:00

21 lines
359 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PWAPPv2.Source.DataObjects
{
class NumValPair
{
public int Num;
public string Value;
public NumValPair(int N, string Val)
{
Num = N;
Value = Val;
}
}
}