Knocks/BackEnd/Knoks.Framework/Services/EmailDestinationtoАddresses.cs

20 lines
667 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.Collections.Generic;
namespace Knoks.Framework.Services
{
public class EmailDestinationtoАddresses
{
public EmailDestinationtoАddresses() { }
public EmailDestinationtoАddresses(IEnumerable<string> toAddresses, IEnumerable<string> ccAddresses = null, IEnumerable<string> bccAddresses = null)
{
ToAddresses = toAddresses;
CcAddresses = ccAddresses;
BccAddresses = bccAddresses;
}
public IEnumerable<string> ToAddresses { get; set; }
public IEnumerable<string> CcAddresses { get; set; }
public IEnumerable<string> BccAddresses { get; set; }
}
}