Open-source event organizing web application and a reference DDD solution.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

31 lines
784 B

using System;
using Microsoft.AspNetCore.Mvc;
namespace EventHub.Web.Pages.Events
{
public class IndexModel : EventHubPageModel
{
[BindProperty(SupportsGet = true)]
public Guid? OrganizationId { get; set; }
[BindProperty(SupportsGet = true)]
public DateTime? MinDate { get; set; }
[BindProperty(SupportsGet = true)]
public DateTime? MaxDate { get; set; }
[BindProperty(SupportsGet = true)]
public bool? IsOnline { get; set; }
[BindProperty(SupportsGet = true)]
public string Language { get; set; }
[BindProperty(SupportsGet = true)]
public Guid? CountryId { get; set; }
public void OnGet()
{
}
}
}