15 lines
330 B
C#
15 lines
330 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace TripleAdd.Models
|
|
{
|
|
public class TripleAddViewModel
|
|
{
|
|
public ushort Add1 { get; set; }
|
|
public ushort Add2 { get; set; }
|
|
public ushort Add3 { get; set; }
|
|
public ushort Ans { get; set; }
|
|
}
|
|
} |