using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Koogle.Domain.Entities; /// /// Join-Entity für die Many-to-Many-Beziehung zwischen Tag und Person. /// public class DayPerson { /// /// ID of a day. /// public Guid DayId { get; set; } /// /// Id of a club. /// public Guid ClubId { get; set; } /// /// reference to a day. /// public Day Day { get; set; } = null!; /// /// Id of a person. /// public Guid PersonId { get; set; } /// /// Reference to a person. /// public Person Person { get; set; } = null!; /// /// associated Club. /// public Club Club { get; set; } = null!; }