19 lines
402 B
C#
Raw Normal View History

2025-03-11 16:24:25 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ZXKFramework
{
public abstract class Model
{
//名字标识
public abstract string Name { get; }
//发送事件
protected void SendEvent(string eventName, object data = null)
{
MVC.SendEvent(eventName, data);
}
}
}