Files
2020-04-12 20:52:03 -04:00

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; }
}
}