11 lines
168 B
C#
Raw Normal View History

2024-12-19 23:55:07 +01:00
namespace Aufgabe22;
public class Employee
{
public string Firstname { get; set; }
public string Lastname { get; set; }
public int Id { get; set; }
}