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

24
Activity.cs Normal file
View File

@ -0,0 +1,24 @@
namespace Activities
{
public class Activity(string title, DateOnly date, string description)
{
private readonly string title = title;
private readonly DateOnly date = date;
private readonly string description = description;
public string GetTitle()
{
return this.title;
}
public DateOnly GetDate()
{
return this.date;
}
public string GetDescription()
{
return this.description;
}
}
}