增加MXL4模组

This commit is contained in:
hehaibing-1996
2024-12-07 17:52:56 +08:00
parent cfbf6a81c8
commit 375d6971cc
5 changed files with 885 additions and 1 deletions

View File

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.WebSocketModel
{
public class SolveWarningRequest : RequestBase
{
public Guid Guid { get; set; }
public SolveTypeEnum SolveType { get; set; }
}
public enum SolveTypeEnum
{
= 0,
= 1,
= 2,
}
}