Files
WPF_Practice/PacticeSolution/MVVMTextInputDetection/Model/Calculate.cs
2023-06-21 11:33:15 +09:00

14 lines
235 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MVVMTextInputDetection.Model
{
class Calculate
{
public int Number { get; set; }
}
}