11 lines
168 B
C#
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; }
|
|||
|
|
|||
|
}
|