mvvm sample (advanced)

This commit is contained in:
2023-06-21 10:59:54 +09:00
parent e60506aaf7
commit 42bc51c9e9
12 changed files with 413 additions and 1 deletions

View File

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