hanyadikhetvan-dotnethf/HanyadikHetVan/DTO/PauseDTO.cs
Torma Kristóf 8347b10401
All checks were successful
continuous-integration/drone/push Build is passing
big day behind me
2021-05-19 04:33:53 +02:00

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; }
}
}