37 lines
779 B
C#
37 lines
779 B
C#
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;
|
|
}
|
|
}
|
|
}
|