Add project files.

This commit is contained in:
Mark Kors
2025-11-11 10:04:23 +01:00
parent 3ad01653d0
commit 6e8ffece0d
4 changed files with 103 additions and 0 deletions

16
Model/Player.cs Normal file
View File

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