1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00
Teknik/Utilities/Routing/EndpointMapping.cs

19 lines
512 B
C#
Raw Normal View History

2021-06-26 07:30:48 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Teknik.Utilities.Routing
{
public class EndpointMapping
{
public string Name { get; set; }
public string Area { get; set; }
public string Pattern { get; set; }
public bool? AdjustPattern { get; set; }
public List<HostType> HostTypes { get; set; }
public List<string> SubDomains { get; set; }
public object Defaults { get; set; }
}
}