17 lines
277 B
C#
17 lines
277 B
C#
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; }
|
|
|
|
}
|
|
}
|