14 lines
287 B
C#
14 lines
287 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace HanyadikHetVan.Data.Entities
|
|||
|
{
|
|||
|
public class WeeklyTimeSpan
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public DateTime Startdate { get; set; }
|
|||
|
|
|||
|
public virtual ICollection<Pause> Pauses { get; set; }
|
|||
|
}
|
|||
|
}
|