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

29 lines
540 B
C#

using ServerCore;
using ServerBase;
namespace ServerCommon.BusinessLogDomain;
public class PartyVoteBusinessLog : ILogInvokerEx
{
private PartyVoteLogData m_data_to_log;
public PartyVoteBusinessLog(PartyVoteLogData logParam)
: base(LogDomainType.PartyVote)
{
m_data_to_log = logParam;
}
public override bool hasLog()
{
return true;
}
protected override void fillup(ref BusinessLog.LogBody body)
{
body.append(new PartyVoteLogData(this, m_data_to_log));
}
}