초기커밋

This commit is contained in:
2025-05-01 07:20:41 +09:00
commit 98bb2e3c5c
2747 changed files with 646947 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
using Newtonsoft.Json;
using ServerCore; using ServerBase;
namespace ServerCommon.BusinessLogDomain;
public class ClaimRewardLogInfo : ILogInvoker.IInfo
{
[JsonProperty("claim_id")]
public long ClaimId { get; private set; } = 0;
[JsonProperty("claim_type")]
public int ClaimType { get; private set; } = 0;
[JsonProperty("reward_data_id")]
public int RewardDataId { get; private set; } = 0;
public ClaimRewardLogInfo(ILogInvoker parent, long claimId, int claimType, int rewardDataId) : base(parent)
{
ClaimId = claimId;
ClaimType = claimType;
RewardDataId = rewardDataId;
}
}