33 lines
682 B
C#
33 lines
682 B
C#
using Google.Protobuf;
|
|
using Google.Protobuf.WellKnownTypes;
|
|
|
|
|
|
using ServerCore;
|
|
using ServerBase;
|
|
using ServerCommon.BusinessLogDomain;
|
|
using MetaAssets;
|
|
|
|
|
|
namespace ServerCommon.BusinessLogDomain;
|
|
|
|
|
|
public class MailProfileBusinessLog : ILogInvokerEx
|
|
{
|
|
private MailProfileLogData m_data_to_log;
|
|
public MailProfileBusinessLog(MailProfileLogData log_data_param)
|
|
: base(LogDomainType.MailProfile)
|
|
{
|
|
m_data_to_log = log_data_param;
|
|
}
|
|
|
|
public override bool hasLog()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
protected override void fillup(ref BusinessLog.LogBody body)
|
|
{
|
|
body.append(new MailProfileLogData(this, m_data_to_log));
|
|
}
|
|
}
|