Files
caliverse_server/ServerCommon/BusinessLog/LogInvoker/UseRewardPropBusinessLog.cs
2025-05-01 07:20:41 +09:00

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));
}
}