using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Web; namespace ShadowEditor.Server.Mesh { /// /// 模型保存器接口 /// public interface IMeshSaver { /// /// 保存模型 /// /// Web上下文环境 /// Result Save(HttpContext context); } }