19 lines
353 B
C#
19 lines
353 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Configuration;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PartSource.Automation.Models.Configuration
|
|
{
|
|
public class EmailConfiguration
|
|
{
|
|
public string From { get; set; }
|
|
|
|
public string To { get; set; }
|
|
|
|
public string SmtpHost { get; set; }
|
|
}
|
|
}
|