https://levelup.gitconnected.com/how-to-sign-in-with-google-in-angular-and-use-jwt-based-net-core-api-authentication-rsa-6635719fb86c
9 lines
245 B
C#
9 lines
245 B
C#
namespace Server.Configurations;
|
|
|
|
public class SmtpCredentials
|
|
{
|
|
public string Host { get; set; } = null!;
|
|
public string Port { get; set; }
|
|
public string User { get; set; } = null!;
|
|
public string Password { get; set; } = null!;
|
|
} |