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