mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
19 lines
512 B
C#
19 lines
512 B
C#
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; }
|
|
}
|
|
}
|