初步完成邮件功能

This commit is contained in:
2025-09-13 19:08:43 +08:00
parent 15e2caed22
commit 42aaf9c01b
45 changed files with 3145 additions and 12 deletions

View File

@@ -0,0 +1,13 @@
namespace DMS.WPF.Interfaces
{
/// <summary>
/// 对话框视图模型接口
/// </summary>
public interface IDialogViewModel
{
/// <summary>
/// 关闭请求事件
/// </summary>
event Action<bool?> CloseRequested;
}
}