Files
Activities/Person.cs
2024-09-25 19:55:58 +02:00

18 lines
350 B
C#

namespace Activities
{
public class Person(string name, string email)
{
private readonly string name = name;
private readonly string email = email;
public string GetName()
{
return this.name;
}
public string GetEmail()
{
return this.email;
}
}
}