Files

15 lines
303 B
C#
Raw Permalink Normal View History

2025-11-20 16:20:04 +08:00
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 = "服务器->主机";
}
}