You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
542 B
C#
23 lines
542 B
C#
using Mesnac.Action.Base;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.RoleManage
|
|
{
|
|
public class initRoleFormAction : ChemicalWeighingAction, IAction
|
|
{
|
|
/// <summary>
|
|
/// 刷新角色信息事件
|
|
/// </summary>
|
|
public static event EventHandler OnRefreshRole;
|
|
|
|
public void Run(RuntimeParameter runtime)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|