adds aspnet.identity
This commit is contained in:
parent
a2f26f1e8e
commit
dc37c9a9f0
26 changed files with 1106 additions and 122 deletions
13
Entities/SmtpSettings.cs
Normal file
13
Entities/SmtpSettings.cs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
namespace nuget_host.Entities
|
||||
{
|
||||
public class SmtpSettings
|
||||
{
|
||||
public string Server {get; set;}
|
||||
public int Port {get; set;}
|
||||
public string SenderName {get; set;}
|
||||
public string SenderEMail {get; set;}
|
||||
public string UserName {get; set;}
|
||||
public string Password {get; set;}
|
||||
public string ProtectionTitle {get; set;}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue