基本框架搭建

This commit is contained in:
2025-04-28 10:06:03 +08:00
parent e253d0c52c
commit d3637e0700
66 changed files with 4479 additions and 280 deletions

View File

@@ -0,0 +1,8 @@
namespace linesider_screen_bankend.Services.Interfaces
{
public interface ILogService
{
string GetInitMessage();
void AddMessage(string log);
}
}