-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1850 from qdraw/feature/202411_portmapper_refactor
Portmapper
- Loading branch information
Showing
4 changed files
with
81 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
starsky/starskytest/starsky.project.web/Helpers/Models/AppSettingsExampleModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
namespace starskytest.starsky.project.web.Helpers.Models; | ||
|
||
public class AppSettingsExampleModel | ||
{ | ||
public class KestrelGlobalConfig | ||
{ | ||
public KestrelConfig? Kestrel { get; set; } | ||
} | ||
|
||
public class KestrelConfig | ||
{ | ||
public ExampleEndpoints? Endpoints { get; set; } | ||
} | ||
|
||
public class ExampleEndpoints | ||
{ | ||
public EndpointObject? Https { get; set; } | ||
public EndpointObject? Http { get; set; } | ||
} | ||
|
||
public class EndpointObject | ||
{ | ||
public string? Url { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters