11 lines
236 B
C#
11 lines
236 B
C#
|
partial class Person
|
|||
|
{
|
|||
|
public string FirstName { get; set; }
|
|||
|
public string LastName { get; set; }
|
|||
|
|
|||
|
public Person(string firstName, string lastName)
|
|||
|
{
|
|||
|
FirstName = firstName;
|
|||
|
LastName = lastName;
|
|||
|
}
|
|||
|
}
|