Files
BeWoPlaner/BeWoPlanerMobil/Util/ReportUtils/ReportTimeFrame.cs
2023-01-18 13:47:25 +01:00

18 lines
446 B
C#

namespace BeWoPlanerMobil.Util.ReportUtils
{
public class ReportTimeFrame
{
public int Year { get; }
public int Month { get; }
public int StartDay { get; }
public int EndDay { get; }
public ReportTimeFrame(int year, int month, int startDay, int endDay)
{
Year = year;
Month = month;
StartDay = startDay;
EndDay = endDay;
}
}
}