22 lines
484 B
C#
22 lines
484 B
C#
using Newtonsoft.Json;
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using ServerBase;
|
|
|
|
|
|
namespace ServerCommon.BusinessLogDomain;
|
|
|
|
public class QuestRewardLogInfo : QuestIdLogInfo
|
|
{
|
|
[JsonProperty("reward_group_id")]
|
|
public Int32 m_reward_group_id { get; private set; } = 0;
|
|
|
|
|
|
public QuestRewardLogInfo(ILogInvoker parent, UInt32 questId, UInt32 questRevision, Int32 rewardGroupId) : base(parent, questId, questRevision)
|
|
{
|
|
m_reward_group_id = rewardGroupId;
|
|
}
|
|
|
|
}
|