net6.0 Ready to test

This commit is contained in:
2022-03-29 07:23:13 -07:00
parent 836f70ed7f
commit 289547180a
135 changed files with 3189 additions and 7648 deletions

View File

@ -18,4 +18,4 @@ public class EmailMessage
public EmailMessage SetPriority(MailPriority priority) => throw new NotImplementedException();
public EmailMessage SetSubject(string subject) => throw new NotImplementedException();
}
}

View File

@ -3,4 +3,4 @@
public interface ISmtp
{
void Send(EmailMessage message);
}
}

View File

@ -5,4 +5,4 @@ public enum MailPriority
Low = 0,
Normal = 1,
High = 2
}
}