Files
2025-05-01 07:20:41 +09:00

22 lines
462 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ServerBase;
//===================================================================================
// 로그 주체를 지칭한다
//===================================================================================
public abstract class ILogActor
{
public virtual bool fillup(IFormatter formatter)
{
return false;
}
}