Files
caliverse_server/ServerBase/BusinessLog/Formatter/IFormatter.cs
2025-05-01 07:20:41 +09:00

18 lines
279 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ServerBase;
public abstract class IFormatter
{
public abstract string toLogString(BusinessLog log);
}//IFormatter