15 lines
322 B
C#
15 lines
322 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AlfaPrentice.Models
|
|
{
|
|
public class AppSettings
|
|
{
|
|
public string EmailSmtp { get; set; }
|
|
public string EmailUsername { get; set; }
|
|
public string EmailPassword { get; set; }
|
|
}
|
|
}
|