20 lines
323 B
C#
20 lines
323 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using ServerCore;
|
|
using ServerBase;
|
|
|
|
|
|
namespace ServerCommon.BusinessLogDomain;
|
|
|
|
public class EmptyLogInfo : ILogInvoker.IInfo
|
|
{
|
|
public EmptyLogInfo(ILogInvoker parent) : base(parent)
|
|
{
|
|
}
|
|
}
|