namespace Domain{ using System; using System.ComponentModel.DataAnnotations.Schema; public class AlternativeShift { public Guid Id { get; set; } [Column("Rotation")] public Guid RotationId { get; set; } [Column("Shift")] public Guid ShiftId { get; set; } [Column("Weekday")] public Guid? WeekdayId { get; set; } public Weekday Weekday { get; set; } public Rotation Rotation { get; set; } public Shift Shift { get; set; } }}