10 lines
267 B
C#
Raw Permalink Normal View History

2024-12-19 23:55:07 +01:00
namespace Aufgabe17.Models
{
public class Employee
{
public string Firstname { get; set; }
public string Lastname { get; set; }
public Gender Gender { get; set; }
public Address Address { get; set; } = new Address();
}
}