19 lines
411 B
C#
19 lines
411 B
C#
/*
|
|
* Author: Nikolay Dvurechensky
|
|
* Site: https://www.dvurechensky.pro/
|
|
* Gmail: dvurechenskysoft@gmail.com
|
|
* Last Updated: 12 мая 2025 02:47:11
|
|
* Version: 1.0.3
|
|
*/
|
|
|
|
partial class Person
|
|
{
|
|
public string FirstName { get; set; }
|
|
public string LastName { get; set; }
|
|
|
|
public Person(string firstName, string lastName)
|
|
{
|
|
FirstName = firstName;
|
|
LastName = lastName;
|
|
}
|
|
} |