18 lines
279 B
C#
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
|