Files
FA/ClientEdiOrdersGenerator/ClientEdiOrdersGeneratorConfiguration.cs
2024-05-09 22:35:02 +02:00

22 lines
610 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ClientEdiOrdersGenerator
{
public class ClientEdiOrdersGeneratorConfiguration
{
public string EmailTo { get; set; }
public string EmailFrom { get; set; }
public bool SendEmail { get; set; }
public int Port { get; set; }
public bool Ssl { get; set; }
public string Address { get; set; }
public string User { get; set; }
public string Password { get; set; }
public string Subject { get; set; }
}
}