KOP_PIbd-33_Yashin_A_A/KOP_Labs/TestProj/Human.cs

16 lines
306 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TestProj
{
public class Human
{
public string Name { get; set; } = string.Empty;
public string SurName { get; set; } = string.Empty;
public int? Age { get; set; }
}
}