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
<h1 mat-dialog-title>Login</h1> | |
<div mat-dialog-content> | |
<mat-form-field> | |
<mat-label>Username</mat-label> | |
<input | |
matInput | |
[(ngModel)]="username"> |
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
version: "3.3" | |
services: | |
db: | |
image: mysql | |
restart: always | |
environment: | |
MYSQL_ROOT_PASSWORD: ThisIsNotAGoodPassword | |
volumes: |
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
/* | |
* Usage ... | |
* var foo = new SomeType { /*.Decorate instance here ... */ }; | |
* var result = await Client.PostAsync<SomeType>("https://some-url.com/api", foo); | |
*/ | |
using System; | |
using System.Net.Http; | |
using System.Threading.Tasks; |