18 lines
350 B
C#
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;
|
|
}
|
|
}
|
|
} |