2024-12-19 23:55:07 +01:00

11 lines
168 B
C#

namespace Aufgabe22;
public class Employee
{
public string Firstname { get; set; }
public string Lastname { get; set; }
public int Id { get; set; }
}