Initial commit

This commit is contained in:
KäseToatz
2024-09-25 19:55:58 +02:00
commit 7fcde4401f
7 changed files with 170 additions and 0 deletions

18
Person.cs Normal file
View File

@ -0,0 +1,18 @@
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;
}
}
}