feat(api): WeekendController, getAll, фильтр по периоду

This commit is contained in:
Mikhail Trubnikov
2024-09-25 10:58:47 +10:00
parent 4140e17825
commit ebe1fd0468
2 changed files with 13 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
namespace PARR.API.Contracts.V1.Requests.Queries
{
public class WeekendQuery
{
public DateOnly? StartPeriod { get; set; }
public DateOnly? EndPeriod { get; set; }
}
}