13 lines
269 B
C#
13 lines
269 B
C#
|
using System;
|
|||
|
|
|||
|
namespace HanyadikHetVan.DTO
|
|||
|
{
|
|||
|
public class PauseDTO
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public int WeeklyTimeSpanId { get; set; }
|
|||
|
public DateTime Startdate { get; set; }
|
|||
|
public DateTime Enddate { get; set; }
|
|||
|
}
|
|||
|
}
|