add new class

master
Christopher 2020-07-01 18:27:59 +02:00
parent e9fc337e6f
commit affd6cbeb3
1 changed files with 22 additions and 0 deletions

22
src/InternalMail.cs Normal file
View File

@ -0,0 +1,22 @@
using MimeKit;
using OpenMetaverse;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenSim.Modules.EMail
{
class InternalMail
{
public MimeMessage Mail = null;
public UUID ID = UUID.Zero;
public InternalMail(MimeMessage mail, UUID id)
{
Mail = mail;
ID = id;
}
}
}