mvvm to mssql

This commit is contained in:
2023-07-19 16:37:21 +09:00
parent 3d9f030ebb
commit 2c793d21af
12 changed files with 531 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MSSQL_MVVM_Sample.Model
{
internal class Student
{
public string Name { get; set; }
public int Age { get; set; }
public string Grade {get; set; }
public int Score { get; set; }
}
}