You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
365 B

using HybirdFrameworkCore.Autofac.Attribute;
namespace Service.TBox.Msg.Host;
public class LockMsg : BaseMsg
{
/// <summary>
/// 0断开连接 1加锁 2解锁 3无效
/// </summary>
[Property(80, 2)]
public byte Lock { get; set; }
public LockMsg(byte @lock)
{
Id = 0x1880D0F3;
Lock = @lock;
}
}