Y2S1-Web_Apps_and_Services/ThAmCo.Events/Models/ViewModels/Events/EventFindMenuModel.cs
2020-06-07 22:36:12 +01:00

17 lines
344 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace ThAmCo.Events.Models.ViewModels.Events
{
public class EventFindMenuModel
{
public string EventType { get; set; }
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
}
}