初步完成历史记录(未完成)

This commit is contained in:
2025-09-11 11:04:07 +08:00
parent 3c47276406
commit 5ca4fe7124
18 changed files with 471 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
namespace DMS.WPF.Interfaces;
/// <summary>
/// 定义了可以接收导航参数的接口
/// </summary>
public interface IParameterReceiver
{
/// <summary>
/// 接收导航参数
/// </summary>
/// <param name="parameter">传递的参数</param>
void ReceiveParameter(object parameter);
}