33 lines
630 B
C#
33 lines
630 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using ServerCore;
|
|
using ServerBase;
|
|
|
|
|
|
namespace ServerCommon.BusinessLogDomain;
|
|
|
|
public class UseRewardPropBusinessLog : ILogInvokerEx
|
|
{
|
|
UseRewardPropInfo m_info;
|
|
public UseRewardPropBusinessLog(UseRewardPropInfo info)
|
|
: base(LogDomainType.RewardProp)
|
|
{
|
|
m_info = info;
|
|
}
|
|
|
|
public override bool hasLog()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
protected override void fillup(ref BusinessLog.LogBody body)
|
|
{
|
|
body.append(new UseRewardPropInfo(this, m_info));
|
|
}
|
|
}
|