초기커밋
This commit is contained in:
31
ServerCommon/1. Define/BusinessLog/Domain/QuestIdLogInfo.cs
Normal file
31
ServerCommon/1. Define/BusinessLog/Domain/QuestIdLogInfo.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
|
||||
using Newtonsoft.Json;
|
||||
|
||||
|
||||
using ServerCore; using ServerBase;
|
||||
|
||||
|
||||
namespace ServerCommon;
|
||||
|
||||
public class QuestIdLogInfo : ILogInvoker.IInfo
|
||||
{
|
||||
[JsonProperty("quest_id")]
|
||||
public UInt32 m_quest_id { get; private set; } = 0;
|
||||
|
||||
[JsonProperty("quest_revision")]
|
||||
public UInt32 m_quest_revision { get; private set; } = new();
|
||||
|
||||
|
||||
public QuestIdLogInfo(ILogInvoker parent, UInt32 questId, UInt32 questRevison)
|
||||
: base(parent)
|
||||
{
|
||||
m_quest_id = questId;
|
||||
m_quest_revision = questRevison;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user