add new class
parent
e9fc337e6f
commit
affd6cbeb3
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue