23 lines
490 B
C#
23 lines
490 B
C#
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; }
|
|
public Person(string fn, string ln, string ag)
|
|
{
|
|
FirstName = fn;
|
|
LastName = ln;
|
|
Age = ag;
|
|
}
|
|
public Person() { }
|
|
}
|
|
}
|