25 lines
403 B
C#
25 lines
403 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;
|
|
|
|
|
|
using META_ID = System.UInt32;
|
|
|
|
|
|
namespace ServerCommon.BusinessLogDomain
|
|
{
|
|
public class TestUserCreate: ILogInvoker.IInfo
|
|
{
|
|
[JsonProperty]
|
|
public META_ID TestUserCreateMId { get; set; }
|
|
}
|
|
}
|