初始化

This commit is contained in:
2025-11-20 16:20:04 +08:00
commit 4230fa4d27
777 changed files with 232488 additions and 0 deletions

14
Commonlib/ConstKey.cs Normal file
View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Commonlib
{
public class ConstKey
{
public const string Receive_RX = "主机->服务器";
public const string Send_TX = "服务器->主机";
}
}