PIbd-31_Malafeev.L.S._COP_25/Cop_25/Forms/Person.cs

16 lines
307 B
C#
Raw Normal View History

2024-09-06 00:43:56 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Forms
{
public class Person
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string Age { get; set; }
}
}