Add project files.

This commit is contained in:
2021-05-03 01:30:06 +02:00
parent 145740773e
commit a0ce1669ae
71 changed files with 41708 additions and 0 deletions

View File

@ -0,0 +1,13 @@
using System;
namespace HanyadikHetVan.Data.Entities
{
public class Pause
{
public int Id { get; set; }
public int WeeklyTimeSpanId { get; set; }
public virtual WeeklyTimeSpan WeeklyTimeSpan { get; set; }
public DateTime Startdate { get; set; }
public DateTime Enddate { get; set; }
}
}

View File

@ -0,0 +1,13 @@
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; }
}
}