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

23 lines
490 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; }
2024-10-06 18:45:39 +04:00
public Person(string fn, string ln, string ag)
{
FirstName = fn;
LastName = ln;
Age = ag;
}
public Person() { }
2024-09-06 00:43:56 +04:00
}
}