초기커밋
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
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.BusinessLogDomain
|
||||
{
|
||||
public class SocialActionLogInfo : ILogInvoker.IInfo
|
||||
{
|
||||
[JsonProperty]
|
||||
public int SocialActionMetaId { get; set; }
|
||||
|
||||
public SocialActionLogInfo()
|
||||
: base()
|
||||
{ }
|
||||
|
||||
public SocialActionLogInfo(ILogInvoker parent, SocialActionLogInfo logParam)
|
||||
: base(parent)
|
||||
{
|
||||
setSocialActionInfo(logParam);
|
||||
}
|
||||
|
||||
public void setSocialActionInfo(SocialActionLogInfo logInfo)
|
||||
{
|
||||
SocialActionMetaId = logInfo.SocialActionMetaId;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user