Files
caliverse_server/ServerCommon/1. Define/BusinessLog/Domain/EmptyLogInfo.cs
2025-05-01 07:20:41 +09:00

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)
{
}
}