2024-09-07 12:03:19 +04:00
|
|
|
|
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;
|
2024-09-25 10:35:18 +04:00
|
|
|
|
public int Age { get; set; }
|
2024-09-07 12:03:19 +04:00
|
|
|
|
}
|
|
|
|
|
}
|